main.css 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362
  1. body{
  2. background:#f1f2f6;
  3. font-family:'Microsoft YaHei';
  4. }
  5. .header_con{
  6. height:59px;
  7. background:#fff;
  8. border-bottom:1px solid #ccc;
  9. }
  10. .header{
  11. width:1200px;
  12. height:59px;
  13. margin:0px auto;
  14. }
  15. .logo{
  16. width:140px;
  17. height:33px;
  18. margin-top:13px;
  19. }
  20. .menu{
  21. width:600px;
  22. height:59px;
  23. margin-left:100px;
  24. }
  25. .menu li{
  26. height:59px;
  27. float:left;
  28. }
  29. .menu .active{
  30. border-bottom:2px solid #009afc;
  31. }
  32. .menu .active a{
  33. color:#39f;
  34. }
  35. .menu li a{
  36. display:block;
  37. line-height:59px;
  38. padding:0px 25px;
  39. font-size:14px;
  40. color:#666;
  41. }
  42. .menu li a:hover{
  43. color:#39f;
  44. }
  45. .user_btns{
  46. line-height:59px;
  47. font-size:14px;
  48. color:#666
  49. }
  50. .user_btns a{
  51. color:#666;
  52. }
  53. .user_btns a:hover{
  54. color:#39f;
  55. }
  56. .user_login{
  57. height:30px;
  58. overflow: hidden;
  59. margin-top:15px;
  60. display:block;
  61. }
  62. .user_login img{
  63. float:left;
  64. width:30px;
  65. height:30px;
  66. border-radius:15px;
  67. }
  68. .user_login a{
  69. float:left;
  70. font-size:14px;
  71. margin-left:10px;
  72. color:#39f;
  73. line-height:30px;
  74. }
  75. .conter_con{
  76. width:1200px;
  77. overflow:hidden;
  78. margin:20px auto 0;
  79. }
  80. .list_con{
  81. width:820px;
  82. }
  83. .list_con li{
  84. background:#fff;
  85. height:168px;
  86. border:1px solid #ececee;
  87. overflow:hidden;
  88. margin-bottom:12px;
  89. }
  90. .list_con .news_pic{
  91. width:168px;
  92. height:168px;
  93. }
  94. .list_con .news_pic img{
  95. width:168px;
  96. height:168px;
  97. }
  98. .list_con .news_title{
  99. width:616px;
  100. height:18px;
  101. margin:16px 0 0 16px;
  102. font-size:18px;
  103. line-height:18px;
  104. color:#000;
  105. overflow: hidden;
  106. white-space: nowrap;
  107. text-overflow: ellipsis;
  108. }
  109. .list_con .news_title:hover{
  110. color:#39f;
  111. }
  112. .list_con .news_detail{
  113. width:616px;
  114. height:88px;
  115. margin:10px 0 0 16px;
  116. font-size:14px;
  117. line-height:23px;
  118. color:#666;
  119. }
  120. .author_info{
  121. width:616px;
  122. height:20px;
  123. margin-left:16px;
  124. }
  125. .author img{
  126. float:left;
  127. }
  128. .author a{
  129. float:left;
  130. font-size:12px;
  131. color:#333;
  132. line-height:20px;
  133. margin-left:5px;
  134. }
  135. .author a:hover{
  136. color:#39f;
  137. }
  138. .source{
  139. float:left;
  140. line-height:20px;
  141. font-size:12px;
  142. color:#999;
  143. }
  144. .time{
  145. float:left;
  146. margin-left:15px;
  147. line-height:20px;
  148. font-size:12px;
  149. text-indent:20px;
  150. color:#999;
  151. background:url(../images/clock.png) left center no-repeat;
  152. }
  153. .rank_con{
  154. width:358px;
  155. border:1px solid #ececee;
  156. }
  157. .card_list_con{
  158. width:760px;
  159. overflow:hidden;
  160. margin-left:10px;
  161. }
  162. .card_list{
  163. width:300px;
  164. height: 160px;
  165. margin:20px;
  166. float:left;
  167. }
  168. .author_card{
  169. background:#fff;
  170. margin-bottom:10px;
  171. overflow: hidden;
  172. padding:20px;
  173. }
  174. .author_pic{
  175. float:left;
  176. width:60px;
  177. height:60px;
  178. }
  179. .author_pic img{
  180. width:60px;
  181. height:60px;
  182. border-radius:30px;
  183. }
  184. .author_name{
  185. float: left;
  186. color:#333;
  187. font-size:22px;
  188. line-height:60px;
  189. margin-left:16px;
  190. }
  191. .author_name:hover{
  192. color:#1482f0;
  193. }
  194. .author_resume{
  195. width:100%;
  196. float: left;
  197. font-size:13px;
  198. color:#666;
  199. margin-top:10px;
  200. }
  201. .writings,.follows{
  202. float: left;
  203. margin:20px 30px 0 0;
  204. }
  205. .writings span,.follows span{
  206. display: block;
  207. font-size:12px;
  208. color:#999;
  209. }
  210. .writings b,.follows b{
  211. display: block;
  212. font-weight:normal;
  213. font-size:18px;
  214. color:#333;
  215. }
  216. .rank_title{
  217. height:53px;
  218. background:#fff;
  219. border-bottom:1px solid #ececee;
  220. }
  221. .rank_title h3{
  222. line-height:53px;
  223. font-size:14px;
  224. color:#000;
  225. text-indent:52px;
  226. background:url(../images/hit_icon.png) 20px center no-repeat;
  227. }
  228. .rank_list{
  229. background:#fff;
  230. }
  231. .rank_list li{
  232. width:316px;
  233. margin:0px auto;
  234. border-bottom:1px solid #ececee;
  235. padding:18px 0px;
  236. overflow:hidden;
  237. }
  238. .rank_list li span{
  239. float:left;
  240. width:19px;
  241. height:19px;
  242. line-height:19px;
  243. text-align:center;
  244. border-radius:2px;
  245. margin-right:11px;
  246. color:#1482f0;
  247. }
  248. .rank_list li a{
  249. float:left;
  250. width:286px;
  251. font-size:14px;
  252. color:#333;
  253. }
  254. .rank_list li a:hover{
  255. color:#39f;
  256. }
  257. .rank_list li .first{
  258. background: #f33;
  259. color:#fff;
  260. }
  261. .rank_list li .second{
  262. background:#ff722b;
  263. color:#fff;
  264. }
  265. .rank_list li .third{
  266. background:#fa3;
  267. color:#fff;
  268. }
  269. .footer{
  270. margin-top:20px;
  271. background:#262F38;
  272. overflow:hidden;
  273. }
  274. .footer_links{
  275. text-align:center;
  276. margin-top:20px;
  277. }
  278. .footer_links a,.footer_links span{
  279. color:#fff;
  280. font-size:12px;
  281. }
  282. .footer_links span{
  283. margin:0 5px;
  284. }
  285. .copyright{
  286. text-align:center;
  287. font-size:12px;
  288. color:#fff;
  289. line-height:26px;
  290. margin-top:9px;
  291. margin-bottom:20px;
  292. }
  293. .login_form_con,.register_form_con{
  294. display:none;
  295. }
  296. .login_form,.register_form{
  297. width:350px;
  298. height:400px;
  299. position:fixed;
  300. background:#fff;
  301. border-radius:5px;
  302. left:50%;
  303. top:50%;
  304. margin-left:-175px;
  305. margin-top:-200px;
  306. z-index:9999;
  307. }
  308. .register_form{
  309. height:500px;
  310. margin-top:-250px;
  311. }
  312. .mask{
  313. position:fixed;
  314. width:100%;
  315. height:100%;
  316. background:#000;
  317. opacity:0.3;
  318. filter:alpha(opacity=30);
  319. left:0px;
  320. top:0px;
  321. z-index:9998;
  322. }
  323. .login_title,.register_title{
  324. height:72px;
  325. border-bottom:1px solid #dcdcdc;
  326. position:relative;
  327. }
  328. .login_title h3,.register_title h3{
  329. line-height:72px;
  330. text-align:center;
  331. font-size:18px;
  332. color:#1482f0;
  333. }
  334. .login_title a,.register_title a{
  335. width:16px;
  336. height:16px;
  337. background:url(../images/shutoff.png) left top no-repeat;
  338. font-weight:normal;
  339. color:#999;
  340. position:absolute;
  341. right:20px;
  342. top:30px;
  343. }
  344. .login_title a:hover,.register_title a:hover{
  345. background:url(../images/shutoff.png) right top no-repeat;
  346. }
  347. .form_group{
  348. width:310px;
  349. height:50px;
  350. border-bottom:1px solid #ebebeb;
  351. margin:23px auto 0;
  352. position:relative;
  353. }
  354. .form_group2{
  355. width:310px;
  356. margin:20px auto 0;
  357. font-size:12px;
  358. color:#999;
  359. position:relative;
  360. }
  361. .register_form .form_group{
  362. margin:15px auto 0;
  363. }
  364. .register_form .input_sub{
  365. margin:30px auto 0;
  366. }
  367. .form_group .error_tip,.form_group2 .error_tip{
  368. position:absolute;
  369. font-size:12px;
  370. color:#f00;
  371. left: auto;
  372. right:0px;
  373. top: auto;
  374. bottom:-20px;
  375. display:none;
  376. }
  377. .form_group2 input,.form_group2 p{
  378. float:left;
  379. }
  380. .form_group2 input{
  381. margin:2px 10px 0 0;
  382. }
  383. .form_group .get_code{
  384. position:absolute;
  385. right:0px;
  386. top:20px;
  387. color:#70b7f9;
  388. font-size:12px;
  389. }
  390. .form_group .get_pic_code{
  391. position:absolute;
  392. width:80px;
  393. height:30px;
  394. right:0px;
  395. top:10px;
  396. }
  397. .form_group .get_code:hover{
  398. color:#1482f0;
  399. }
  400. .register_form .code_pwd{
  401. width:200px;
  402. }
  403. .hotline{
  404. border-bottom:1px solid #2185ed;
  405. }
  406. .form_group input{
  407. width:310px;
  408. height:44px;
  409. border:0px;
  410. outline:none;
  411. position:absolute;
  412. left:0;
  413. bottom:0;
  414. }
  415. .form_group .input_tip{
  416. position:absolute;
  417. left:0;
  418. top:22px;
  419. width:110px;
  420. line-height:14px;
  421. font-size:14px;
  422. color:#999;
  423. }
  424. .input_sub{
  425. display:block;
  426. width:310px;
  427. height:40px;
  428. background:#1482f0;
  429. border:0px;
  430. color:#fff;
  431. font-size:14px;
  432. margin:50px auto 0;
  433. border-radius:4px;
  434. cursor:pointer;
  435. }
  436. .input_sub:hover{
  437. background:#4d9df1;
  438. }
  439. .down_link{
  440. text-align:center;
  441. font-size:12px;
  442. color:#999;
  443. margin-top:30px;
  444. }
  445. .down_link a{
  446. color:#70b7f9;
  447. }
  448. .down_link a:hover{
  449. color:#1482f0;
  450. }
  451. .register_form .down_link{
  452. margin-top:20px;
  453. }
  454. .detail_con{
  455. width:778px;
  456. padding:20px;
  457. overflow:hidden;
  458. background:#fff;
  459. border:1px solid #ececee;
  460. }
  461. .detail_con h3{
  462. font-size:30px;
  463. line-height:45px;
  464. }
  465. .detail_about{
  466. margin:10px 0;
  467. border-bottom:1px solid #ebebeb;
  468. padding:10px 0;
  469. }
  470. .time_souce{
  471. color:#999;
  472. font-size: 12px;
  473. text-indent:20px;
  474. background:url(../images/clock.png) left center no-repeat;
  475. }
  476. .comment{
  477. color:#999;
  478. font-size: 12px;
  479. text-indent:20px;
  480. background:url(../images/comment_icon.png) left center no-repeat;
  481. }
  482. .summary{
  483. letter-spacing: .5px;
  484. text-align: justify;
  485. background:#f0f2f5;
  486. font-size:16px;
  487. line-height:28px;
  488. padding:15px 25px;
  489. margin-top:30px;
  490. position:relative;
  491. }
  492. .detail_con .summary:before{
  493. position:absolute;
  494. left:5px;
  495. top:5px;
  496. content:"『";
  497. }
  498. .detail_con .summary:after{
  499. position:absolute;
  500. right:5px;
  501. bottom:5px;
  502. content:"』";
  503. }
  504. .detail_con h4{
  505. font-size: 18px;
  506. font-weight: 700;
  507. color: #1478f0;
  508. border-left: 5px solid #1478f0;
  509. padding-left: 10px;
  510. margin:30px 0
  511. }
  512. .detail_con p{
  513. font-size: 16px;
  514. line-height: 28px;
  515. margin-bottom: 30px;
  516. text-align: justify
  517. }
  518. .collection{
  519. display:inline-block;;
  520. width:98px;
  521. line-height:34px;
  522. text-indent:45px;
  523. border:1px solid #3791ef;
  524. color:#3791ef;
  525. border-radius:4px;
  526. font-size:14px;
  527. margin:0px 5px;
  528. background:url(../images/collect_icons.png) 21px 7px no-repeat;
  529. overflow:hidden;
  530. }
  531. .block-center {
  532. display: block;
  533. margin: 0 auto;
  534. }
  535. .collection:hover{
  536. background:url(../images/collect_icons.png) 21px -33px no-repeat;
  537. }
  538. .focus{
  539. display:inline-block;;
  540. width:98px;
  541. line-height:34px;
  542. text-indent:45px;
  543. border:1px solid #f80;
  544. color:#f80;
  545. border-radius:4px;
  546. font-size:14px;
  547. /*margin:0px 5px;*/
  548. background:url(../images/focus_icons.png) 21px 7px no-repeat;
  549. overflow: hidden;
  550. }
  551. .focus:hover{
  552. background:url(../images/focus_icons.png) 21px -33px no-repeat;
  553. }
  554. .collected{
  555. /*display:inline-block;*/
  556. width:100px;
  557. height:36px;
  558. color:#666;
  559. border-radius:4px;
  560. font-size:14px;
  561. /*margin:0px 5px;*/
  562. background:url(../images/collect_icons.png) 15px -73px no-repeat #e6e6e6;
  563. position:relative;
  564. overflow:hidden;
  565. }
  566. .collected:hover{
  567. background-position:10px -73px;
  568. }
  569. .collected .out{
  570. position:absolute;
  571. left:40px;
  572. top:8px;
  573. }
  574. .collected:hover .out{
  575. left:40px;
  576. top:35px;
  577. }
  578. .collected .over{
  579. position:absolute;
  580. left:40px;
  581. top:35px;
  582. }
  583. .collected:hover .over{
  584. left:33px;
  585. top:8px;
  586. }
  587. .focused{
  588. display:inline-block;;
  589. width:100px;
  590. height:36px;
  591. color:#666;
  592. border-radius:4px;
  593. font-size:14px;
  594. /*margin:0px 5px;*/
  595. background:url(../images/focus_icons.png) 15px -73px no-repeat #e6e6e6;
  596. position:relative;
  597. overflow:hidden;
  598. }
  599. .focused:hover{
  600. background-position:10px -73px;
  601. }
  602. .focused .out{
  603. position:absolute;
  604. left:40px;
  605. top:8px;
  606. }
  607. .focused:hover .out{
  608. left:40px;
  609. top:35px;
  610. }
  611. .focused .over{
  612. position:absolute;
  613. left:40px;
  614. top:35px;
  615. }
  616. .focused:hover .over{
  617. left:33px;
  618. top:8px;
  619. }
  620. .comment_form_logout{
  621. border:1px solid #e3e8ee;
  622. width:756px;
  623. border-radius:4px;
  624. padding:15px 10px;
  625. outline:none;
  626. font-size:16px;
  627. color:#e3e8ee;
  628. margin-top:50px;
  629. }
  630. .comment_form{
  631. margin-top:50px;
  632. overflow:hidden;
  633. }
  634. .comment_form .person_pic{
  635. float:left;
  636. width:40px;
  637. height:40px;
  638. }
  639. .comment_form img{
  640. width:40px;
  641. height:40px;
  642. border-radius:20px;
  643. }
  644. .comment_form .comment_input{
  645. float:left;
  646. width:690px;
  647. height:60px;
  648. margin-left:20px;
  649. border-radius:4px;
  650. padding:10px;
  651. outline:none;
  652. border:1px solid #2185ed;
  653. }
  654. .comment_form .comment_sub{
  655. float:right;
  656. width:58px;
  657. height:28px;
  658. border:1px solid #2185ed;
  659. background:#fff;
  660. border-radius:4px;
  661. margin:10px 7px 0 0;
  662. cursor:pointer;
  663. }
  664. .comment_form .comment_sub:hover{
  665. background:#2185ed;
  666. color:#fff;
  667. }
  668. .comment_count{
  669. font-size: 16px;
  670. color: #333;
  671. border-bottom: 1px solid #ebebeb;
  672. padding: 12px 0
  673. }
  674. .comment_list{
  675. border-bottom:1px solid #ebebeb;
  676. overflow:hidden;
  677. margin-top:15px;
  678. padding-bottom:15px;
  679. }
  680. .comment_list .person_pic{
  681. width:40px;
  682. height:40px;
  683. float:left;
  684. }
  685. .comment_list .person_pic img{
  686. width:40px;
  687. height:40px;
  688. border-radius:20px;
  689. }
  690. .user_name{
  691. width:690px;
  692. font-size: 14px;
  693. font-weight: 700;
  694. line-height: 20px;
  695. color: #333;
  696. margin-left:20px;
  697. }
  698. .comment_text{
  699. width:718px;
  700. font-size: 14px;
  701. line-height: 20px;
  702. color: #333;
  703. margin:5px 0 0 20px;
  704. }
  705. .comment_time{
  706. font-size:12px;
  707. color:#999;
  708. margin:10px 0 0 60px;
  709. }
  710. .comment_up{
  711. font-size:12px;
  712. color:#999;
  713. text-indent:20px;
  714. margin:10px 0 0 20px;
  715. background:url(../images/zan_icon.png) left top no-repeat;
  716. }
  717. .has_comment_up{
  718. font-size:12px;
  719. color:#999;
  720. text-indent:20px;
  721. margin:10px 0 0 20px;
  722. background:url(../images/zan_icon.png) left bottom no-repeat;
  723. }
  724. .comment_reply{
  725. font-size:12px;
  726. color:#999;
  727. text-indent:20px;
  728. margin:10px 0 0 20px;
  729. background:url(../images/reply_icon.png) left center no-repeat;
  730. }
  731. .reply_text_con{
  732. width:698px;
  733. padding:10px;
  734. background:#fafafa;
  735. margin:10px 0 0 60px;
  736. }
  737. .reply_text_con .user_name2{
  738. font-size:12px;
  739. font-weight:bold;
  740. color:#000;
  741. margin-bottom:5px;
  742. }
  743. .reply_text_con .reply_text{
  744. color:#666;
  745. font-size:12px;
  746. }
  747. .reply_form{
  748. width:718px;
  749. overflow:hidden;
  750. margin:10px 0 0 60px;
  751. display:none;
  752. }
  753. .reply_input{
  754. float:left;
  755. width:692px;
  756. height:30px;
  757. border-radius:4px;
  758. padding:10px;
  759. outline:none;
  760. border:1px solid #2185ed;
  761. }
  762. .reply_sub,.reply_cancel{
  763. width:40px;
  764. height:23px;
  765. background:#76b6f4;
  766. border:0px;
  767. border-radius:2px;
  768. color:#fff;
  769. margin:10px 5px 0 10px;
  770. cursor:pointer;
  771. }
  772. .reply_cancel{
  773. background:#fff;
  774. color: #909090;
  775. }
  776. .user_con{
  777. width:778px;
  778. min-height:660px;
  779. padding:20px;
  780. overflow:hidden;
  781. background:#f9f9f9;
  782. border:1px solid #ececee;
  783. }
  784. .main_frame{
  785. width:778px;
  786. min-height:660px;
  787. }
  788. .inframe_body{
  789. background:#f9f9f9;
  790. }
  791. .user_menu_con{
  792. width:308px;
  793. height:600px;
  794. background:#fff;
  795. border:1px solid #ececee;
  796. margin:100px 0 0 50px;
  797. position:relative;
  798. }
  799. .user_center_pic{
  800. width:198px;
  801. height:198px;
  802. position:absolute;
  803. left:55px;
  804. top:-100px;
  805. }
  806. .user_center_pic img{
  807. width:198px;
  808. height:198px;
  809. border-radius:99px;
  810. }
  811. .user_center_name{
  812. text-align:center;
  813. margin-top:120px;
  814. font-size:18px;
  815. }
  816. .option_list{
  817. width:268px;
  818. margin:20px auto 0;
  819. }
  820. .option_list li{
  821. text-align:center;
  822. border-bottom:1px solid #ededed;
  823. }
  824. .option_list li a{
  825. line-height:50px;
  826. font-size:14px;
  827. color:#333;
  828. }
  829. .option_list .active a{
  830. color:#39f;
  831. }
  832. .option_list li a:hover{
  833. color:#39f;
  834. }
  835. .user_con h3{
  836. font-size: 18px;
  837. padding: 10px 20px;
  838. color: #9698a5;
  839. border-bottom:1px solid #ededed;
  840. }
  841. .base_info,.pic_info,.type_info,.pass_info,.my_collect,.release_form,.news_list{
  842. width:700px;
  843. margin:0px auto;
  844. }
  845. .common_title,.base_info h3,.pic_info h3,.type_info h3,.pass_info h3,.my_collect h3,.release_form h3,.news_list h3{
  846. font-size: 18px;
  847. padding: 10px 20px;
  848. color: #9698a5;
  849. border-bottom:1px solid #ededed;
  850. }
  851. .pass_info,.release_form{
  852. position: relative;
  853. }
  854. .error_tip{
  855. position:absolute;
  856. left:178px;
  857. top:228px;
  858. color:#f00;
  859. font-size:13px;
  860. display:none;
  861. }
  862. .error_tip2{
  863. position:absolute;
  864. left:127px;
  865. bottom:33px;
  866. color:#f00;
  867. font-size:13px;
  868. display:none;
  869. }
  870. .form-group{
  871. width:600px;
  872. margin:20px auto;
  873. overflow:hidden;
  874. position:relative;
  875. }
  876. .form-group label{
  877. width:120px;
  878. line-height:40px;
  879. font-size:14px;
  880. font-weight:bold;
  881. color:#000;
  882. text-align:right;
  883. float:left;
  884. margin-right:5px;
  885. }
  886. .form-group .input_txt,.form-group .input_txt2{
  887. width:400px;
  888. height:30px;
  889. float:left;
  890. margin-top:5px;
  891. border:1px solid #ddd;
  892. border-radius:4px;
  893. outline:none;
  894. text-indent:10px;
  895. }
  896. .form-group b{
  897. line-height:40px;
  898. font-size:14px;
  899. font-weight:normal;
  900. color:#000;
  901. }
  902. .form-group .input_sub{
  903. width:402px;
  904. height:30px;
  905. margin:10px 0 0 128px;
  906. }
  907. .now_user_pic{
  908. width:100px;
  909. height:100px;
  910. border-radius:50px;
  911. }
  912. .label01{
  913. margin-top:35px;
  914. }
  915. .input_file{
  916. float:left;
  917. margin-top:8px;
  918. }
  919. .article_list{
  920. width:700px;
  921. margin:30px auto 0;
  922. }
  923. .article_list li{
  924. height:50px;
  925. border-bottom:1px solid #ededed;
  926. position:relative;
  927. }
  928. .article_list li a{
  929. line-height:50px;
  930. width:450px;
  931. overflow: hidden;
  932. text-overflow:ellipsis;
  933. white-space: nowrap;
  934. font-size:14px;
  935. color:#666;
  936. float:left;
  937. position:relative;
  938. text-indent:20px;
  939. }
  940. .article_list li a:hover{
  941. color:#39f;
  942. }
  943. .article_list li a:before{
  944. content:"· ";
  945. color:#1482f0;
  946. font-size:40px;
  947. position:absolute;
  948. left:-17px;
  949. top:-2px;
  950. }
  951. .article_list li span{
  952. line-height:50px;
  953. font-size:14px;
  954. color:#999;
  955. text-indent:20px;
  956. float:right;
  957. background:url(../images/clock.png) left center no-repeat;
  958. }
  959. .article_list li em{
  960. line-height:50px;
  961. font-size:14px;
  962. color:#999;
  963. float:left;
  964. margin-left:20px;
  965. }
  966. .article_list li b{
  967. position:absolute;
  968. width:602px;
  969. height:72px;
  970. background:url(../images/tip_bg.png) no-repeat;
  971. left:20px;
  972. top:36px;
  973. font-weight:normal;
  974. font-size:12px;
  975. color:#666;
  976. z-index:100;
  977. padding:13px 10px 0;
  978. display:none;
  979. }
  980. .article_list li:hover b{
  981. display:block;
  982. }
  983. .article_list li .pass{
  984. color:green;
  985. }
  986. .article_list li .review{
  987. color:#dca80a;
  988. }
  989. .article_list li .nopass{
  990. color:#f00;
  991. }
  992. .loader_more{
  993. display:block;
  994. margin:30px auto 0;
  995. width:118px;
  996. line-height:38px;
  997. text-align:center;
  998. border:1px solid #ddd;
  999. border-radius:4px;
  1000. color:#666;
  1001. font-size:14px;
  1002. }
  1003. .loader_more:hover{
  1004. color:#39f;
  1005. }
  1006. .error_con{
  1007. width:800px;
  1008. height:500px;
  1009. margin:100px auto 0;
  1010. }
  1011. .error_con img{
  1012. float:left;
  1013. margin-right:20px;
  1014. }
  1015. .error_con h3{
  1016. width:360px;
  1017. margin-top:50px;
  1018. font-size:30px;
  1019. color:#333;
  1020. float:left;
  1021. }
  1022. .error_con h4{
  1023. width:360px;
  1024. font-size:18px;
  1025. margin-top:10px;
  1026. color:#666;
  1027. float:left;
  1028. }
  1029. .error_con p{
  1030. width:360px;
  1031. font-size:14px;
  1032. margin-top:10px;
  1033. color:#999;
  1034. float:left;
  1035. }
  1036. .error_con a{
  1037. float:left;
  1038. width:120px;
  1039. height:36px;
  1040. line-height:36px;
  1041. text-align:center;
  1042. border-radius:18px;
  1043. background:#1482f0;
  1044. color:#fff;
  1045. margin-top:20px;
  1046. }
  1047. .error_con a:hover{
  1048. background:#39f;
  1049. }
  1050. .release_form .form-group{
  1051. width:700px;
  1052. overflow:hidden;
  1053. margin:15px auto;
  1054. }
  1055. .form-group .input_txt2{
  1056. width:570px;
  1057. }
  1058. .form-group .sel_opt{
  1059. width:150px;
  1060. height:30px;
  1061. float:left;
  1062. margin-top:5px;
  1063. border:1px solid #ddd;
  1064. border-radius:4px;
  1065. outline:none;
  1066. text-indent:10px;
  1067. }
  1068. .form-group .input_multxt{
  1069. width:550px;
  1070. height:60px;
  1071. padding:10px;
  1072. float:left;
  1073. margin-top:5px;
  1074. border:1px solid #ddd;
  1075. border-radius:4px;
  1076. outline:none;
  1077. text-indent:10px;
  1078. }
  1079. .form-group .input_multxt2{
  1080. width:570px;
  1081. padding:10px 0px;
  1082. height:300px;
  1083. float:left;
  1084. margin-top:5px;
  1085. border:1px solid #ddd;
  1086. outline:none;
  1087. text-indent:10px;
  1088. }
  1089. .form-group .input_sub2{
  1090. width:100px;
  1091. margin:10px 0 0 127px;
  1092. }
  1093. .other_con{
  1094. width:1100px;
  1095. height:200px;
  1096. margin-left:100px;
  1097. background:#fff;
  1098. position:relative;
  1099. }
  1100. .other_center_pic{
  1101. width:198px;
  1102. height:198px;
  1103. position:absolute;
  1104. left:-100px;
  1105. top:0px;
  1106. }
  1107. .other_detail{
  1108. width:268px;
  1109. margin:30px auto 0;
  1110. }
  1111. .other_detail li{
  1112. text-align:left;
  1113. font-size:14px;
  1114. line-height:40px;
  1115. border-bottom:1px dotted #ededed;
  1116. text-indent:10px;
  1117. }
  1118. .focus_other{
  1119. overflow:hidden;
  1120. margin-top:40px;
  1121. text-align:center;
  1122. }
  1123. .focus_other a{
  1124. text-align:left;
  1125. }
  1126. .ui-pagination-container{
  1127. text-align:center;
  1128. margin-top:20px;
  1129. }
  1130. .ui-pagination-container .ui-pagination-page-item:hover{
  1131. color:#39f;
  1132. border-color:#39f;
  1133. }
  1134. .ui-pagination-container .ui-pagination-page-item{
  1135. background:none;
  1136. font-size:12px;
  1137. }
  1138. .ui-pagination-container .ui-pagination-page-item.active{
  1139. background:#39f;
  1140. border-color:#39f;
  1141. }
  1142. .ui-pagination-container .ui-pagination-page-item:hover{
  1143. color:#333;
  1144. }