style.css 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232
  1. @charset 'UTF-8';
  2. html {
  3. overflow-x: auto;
  4. overflow-y: auto;
  5. }
  6. * {
  7. padding: 0;
  8. margin: 0;
  9. outline: none !important;
  10. }
  11. ul,
  12. ol,
  13. li {
  14. list-style-type: none;
  15. }
  16. body,
  17. button,
  18. input,
  19. select,
  20. textarea {
  21. font-family: 'Microsoft yahei';
  22. font-size: 12px;
  23. }
  24. code,
  25. kbd,
  26. pre,
  27. samp {
  28. font-family: 'Microsoft yahei';
  29. }
  30. a {
  31. text-decoration: none;
  32. color: #333;
  33. cursor: pointer;
  34. -webkit-transition: all 0.2s ease-out 0s;
  35. -moz-transition: all 0.2s ease-out 0s;
  36. -o-transition: all 0.2s ease-out 0s;
  37. transition: all 0.2s ease-out 0s;
  38. }
  39. img {
  40. border: 0;
  41. max-width: 100%;
  42. max-height: 100%;
  43. vertical-align: middle;
  44. }
  45. li {
  46. line-height: normal;
  47. }
  48. table {
  49. border-collapse: collapse;
  50. border-spacing: 0;
  51. }
  52. h1,
  53. h2,
  54. h3,
  55. h4,
  56. h5,
  57. h6 {
  58. margin: 0;
  59. font-weight: normal;
  60. font-family: 'Microsoft yahei';
  61. }
  62. input,
  63. table,
  64. tr,
  65. td {
  66. margin: 0;
  67. padding: 0;
  68. border: none;
  69. }
  70. button,
  71. table {
  72. border: none;
  73. background: none;
  74. margin: 0;
  75. padding: 0;
  76. }
  77. body {
  78. position: relative;
  79. float: left;
  80. width: 100%;
  81. overflow: hidden;
  82. }
  83. select {
  84. margin: 0;
  85. padding: 0;
  86. font-family: 'Microsoft yahei';
  87. border: none;
  88. }
  89. textarea {
  90. resize: none;
  91. outline: none;
  92. }
  93. label {
  94. margin-bottom: 0;
  95. font-weight: normal;
  96. }
  97. input,
  98. select,
  99. textarea {
  100. margin: 0;
  101. padding: 0;
  102. border: 0;
  103. outline: none;
  104. -moz-border-radius: 0px;
  105. -webkit-border-radius: 0;
  106. -khtml-border-radius: 0;
  107. border-radius: 0;
  108. }
  109. p {
  110. margin: 0 !important;
  111. }
  112. .textOver {
  113. overflow: hidden;
  114. text-overflow: ellipsis;
  115. white-space: nowrap;
  116. }
  117. .pz_top {
  118. float: left;
  119. width: 100%;
  120. min-width: 1200px;
  121. z-index: 101;
  122. position: relative;
  123. }
  124. .pz_banner {
  125. float: left;
  126. width: 100%;
  127. min-width: 1200px;
  128. position: relative;
  129. overflow: hidden;
  130. }
  131. .pz_main {
  132. float: left;
  133. width: 100%;
  134. min-width: 1200px;
  135. position: relative;
  136. }
  137. .pz_down {
  138. float: left;
  139. width: 100%;
  140. min-width: 1200px;
  141. }
  142. .pz_menu {
  143. float: left;
  144. width: 100%;
  145. min-width: 1200px;
  146. }
  147. .w_0100 {
  148. float: left;
  149. width: 100%;
  150. }
  151. .w_1200 {
  152. margin: 0 auto;
  153. width: 1200px;
  154. }
  155. /* 直播大厅开始*/
  156. .livetop {
  157. width: 100%;
  158. height: 487px;
  159. overflow: hidden;
  160. background-image: url(../images/top_3.png);
  161. }
  162. .livetop .title {
  163. text-align: center;
  164. color: #fff;
  165. font-size: 45px;
  166. position: relative;
  167. top: 65px;
  168. }
  169. .livetop .zhuban {
  170. position: relative;
  171. top: 140px;
  172. color: #fff;
  173. text-align: center;
  174. width: 100%;
  175. font-size: 25px;
  176. }
  177. .livetop .zhuban span:first-child {
  178. font-weight: bold;
  179. }
  180. .livetop .num {
  181. position: relative;
  182. top: 190px;
  183. color: #fff;
  184. }
  185. .livetop .num p {
  186. float: left;
  187. width: 186px;
  188. background: #fff;
  189. margin: 0 14px 0 0 !important;
  190. color: #000;
  191. height: 50px;
  192. line-height: 50px;
  193. border-radius: 30px;
  194. }
  195. .livetop .num p:last-child {
  196. margin: 0;
  197. }
  198. .livetop .num p span:first-child {
  199. display: inline-block;
  200. width: 93px;
  201. text-align: center;
  202. height: 50px;
  203. line-height: 50px;
  204. font-size: 16px;
  205. background: red;
  206. border-radius: 30px;
  207. color: #fff;
  208. font-weight: bold;
  209. }
  210. .livetop .num p span:last-child {
  211. display: inline-block;
  212. width: 89px;
  213. text-align: center;
  214. font-size: 15px;
  215. font-weight: bold;
  216. }
  217. .livemain {
  218. position: relative;
  219. top: -55px;
  220. z-index: 999;
  221. }
  222. .livemain .livevideo {
  223. height: 470px;
  224. overflow: hidden;
  225. margin: 0 0 15px 0;
  226. }
  227. .livemain .livevideo .left {
  228. float: left;
  229. width: 50%;
  230. height: 460px;
  231. overflow: hidden;
  232. border: 5px solid #000000;
  233. background: #fff;
  234. border-radius: 5px;
  235. }
  236. .livemain .livevideo .left .title {
  237. padding: 0 10px;
  238. height: 40px;
  239. line-height: 40px;
  240. font-size: 20px;
  241. font-weight: bold;
  242. }
  243. .livemain .livevideo .left .video {
  244. height: 410px;
  245. margin: 0 10px 10px 10px;
  246. border: 2px solid #ccc;
  247. }
  248. .livemain .livevideo .right {
  249. height: 460px;
  250. overflow: hidden;
  251. background-color: #B22C2C;
  252. border-top-left-radius: 5px;
  253. border-bottom-left-radius: 5px;
  254. }
  255. .livemain .livevideo .right p {
  256. height: 40px;
  257. line-height: 40px;
  258. padding: 0 10px;
  259. }
  260. .livemain .livevideo .right p span {
  261. display: inline-block;
  262. padding: 0 10px;
  263. color: #fff;
  264. font-size: 18px;
  265. font-weight: bold;
  266. }
  267. .livemain .livevideo .right .videoTitle ul li {
  268. height: 40px;
  269. line-height: 40px;
  270. font-size: 14px;
  271. color: #fff;
  272. border-bottom: 1px solid yellow;
  273. padding: 0 0 0 10px;
  274. margin: 0 20px;
  275. }
  276. .livemain .livevideo .right .videoTitle ul li:nth-child(2n) {
  277. background-color: #8e2323;
  278. }
  279. .livemain .livevideo .right .videoTitle ul li span {
  280. margin: 0 20px 0 0;
  281. }
  282. .livemain .livevideo .right .videoTitle ul li span:first-child {
  283. color: #FFFF00;
  284. }
  285. .livemain .livevideo .right .videoTitle ul li span:last-child {
  286. margin: 0;
  287. }
  288. .livemain .liveMainImage {
  289. height: 140px;
  290. overflow: hidden;
  291. margin: 0 0 15px 0;
  292. }
  293. .livemain .gongqiu {
  294. width: 100%;
  295. min-height: 100px;
  296. overflow: hidden;
  297. margin: 0 0 10px 0;
  298. }
  299. .livemain .gongqiu .gongqiuTop {
  300. height: 125px;
  301. overflow: hidden;
  302. }
  303. .livemain .gongqiu .gongqiuInfo {
  304. height: 498px;
  305. overflow: hidden;
  306. }
  307. .livemain .gongqiu .gongqiuInfo:hover #tab .tabCon {
  308. box-shadow: 0px 0px 10px #ed6941;
  309. }
  310. .livemain .gongqiu .gongqiuInfo .tabList {
  311. float: left;
  312. height: 40px;
  313. line-height: 40px;
  314. border-bottom: 1px solid #ccc;
  315. width: 1169px;
  316. margin: 0 15px;
  317. }
  318. .livemain .gongqiu .gongqiuInfo #tab {
  319. position: relative;
  320. }
  321. .livemain .gongqiu .gongqiuInfo #tab .tabList ul li {
  322. float: left;
  323. width: 80px;
  324. height: 38px;
  325. text-align: center;
  326. font-size: 20px;
  327. color: #005293;
  328. margin: 0 20px 0 0;
  329. }
  330. .livemain .gongqiu .gongqiuInfo #tab .tabCon {
  331. position: absolute;
  332. top: 50px;
  333. width: 1170px;
  334. height: 435px;
  335. margin: 0 15px;
  336. box-shadow: 0px 0px 10px #aaa;
  337. overflow: hidden;
  338. }
  339. .livemain .gongqiu .gongqiuInfo #tab .tabCon div {
  340. position: absolute;
  341. opacity: 0;
  342. filter: alpha(opacity=0);
  343. }
  344. .livemain .gongqiu .gongqiuInfo #tab .tabList li.cur {
  345. border-bottom: 3px solid#005293;
  346. }
  347. .livemain .gongqiu .gongqiuInfo #tab .tabCon div.cur {
  348. opacity: 1;
  349. filter: alpha(opacity=100);
  350. }
  351. .livemain .gongqiu #tab .tabCon div {
  352. position: absolute;
  353. opacity: 0;
  354. filter: alpha(opacity=0);
  355. }
  356. .livemain .gongqiu #tab .tabList li.cur {
  357. border-bottom: 3px solid#005293;
  358. }
  359. .livemain .gongqiu #tab .tabCon div.cur {
  360. opacity: 1;
  361. filter: alpha(opacity=100);
  362. }
  363. .tabConList {
  364. width: 100%;
  365. }
  366. .cur_1 {
  367. width: 100%;
  368. }
  369. .gongqiuInfo .oneLi {
  370. float: left;
  371. width: 1168px;
  372. border-bottom: 1px solid #ccc;
  373. }
  374. .gongqiuInfo .oneLi .oneLiLeft {
  375. float: left;
  376. width: 55%;
  377. padding: 10px;
  378. margin: 0 0 10px 0 !important;
  379. }
  380. .gongqiuInfo .oneLi .oneLiLeft .name {
  381. width: 100%;
  382. display: inline-block;
  383. font-size: 18px;
  384. padding: 8px 0 0 0;
  385. }
  386. .gongqiuInfo .oneLi .oneLiLeft .user {
  387. width: 49%;
  388. display: inline-block;
  389. font-size: 16px;
  390. padding: 10px 0;
  391. }
  392. .gongqiuInfo .oneLi .oneLiLeft .type {
  393. width: 24%;
  394. display: inline-block;
  395. font-size: 16px;
  396. padding: 10px 0;
  397. }
  398. .gongqiuInfo .oneLi .oneLiRight {
  399. float: left;
  400. width: 41%;
  401. padding: 5px;
  402. border: 1px solid red;
  403. margin: 11px 15px !important;
  404. }
  405. .gongqiuInfo .oneLi .oneLiRight span {
  406. background: #FFF8FD;
  407. display: inline-block;
  408. color: #1b1b1b;
  409. line-height: 30px;
  410. font-size: 14px;
  411. padding: 5px 15px;
  412. }
  413. .gongqiuInfo .twoLi {
  414. float: left;
  415. width: 585px;
  416. padding: 29px 20px;
  417. border-bottom: 1px solid #ccc;
  418. }
  419. .gongqiuInfo .twoLi:hover {
  420. background: #f5f5f5;
  421. }
  422. .gongqiuInfo .twoLi:hover p:first-child {
  423. color: red;
  424. }
  425. .gongqiuInfo .twoLi p:first-child {
  426. font-size: 18px;
  427. color: #005293;
  428. font-weight: bold;
  429. }
  430. .gongqiuInfo .twoLi p:nth-child(2n) {
  431. padding: 10px 0;
  432. color: #333;
  433. }
  434. .gongqiuInfo .twoLi p:nth-child(2n) span {
  435. display: inline-block;
  436. width: 60%;
  437. font-size: 16px;
  438. }
  439. .gongqiuInfo .twoLi p:nth-child(2n) span:last-child {
  440. width: 39%;
  441. }
  442. .gongqiuInfo .twoLi p:last-child {
  443. font-size: 16px;
  444. color: #333;
  445. }
  446. .gongqiuInfo .twoLi p:last-child span {
  447. display: inline-block;
  448. width: 60%;
  449. font-size: 16px;
  450. }
  451. .gongqiuInfo .twoLi p:last-child span:last-child {
  452. width: 39%;
  453. }
  454. .gongqiuInfo .threeLi {
  455. width: 350px;
  456. float: left;
  457. margin: 10px 0 0 30px;
  458. border: 1px solid #ccc;
  459. }
  460. .gongqiuInfo .threeLi:hover {
  461. box-shadow: 0 0 10px #ccc;
  462. }
  463. .gongqiuInfo .threeLi p:first-child {
  464. font-size: 18px;
  465. padding: 10px;
  466. }
  467. .gongqiuInfo .threeLi p:nth-child(2n) img {
  468. float: left;
  469. width: 100px;
  470. height: 100px;
  471. margin: 10px;
  472. }
  473. .gongqiuInfo .threeLi p:nth-child(2n) button {
  474. float: left;
  475. width: 28%;
  476. border: 1px solid #ddd;
  477. height: 25px;
  478. color: #39c;
  479. margin: 0 0 0 15px;
  480. }
  481. .gongqiuInfo .threeLi p:nth-child(2n) span {
  482. float: left;
  483. width: 65%;
  484. padding: 15px 0 15px 20px;
  485. }
  486. .gongqiuInfo .threeLi p:nth-child(2n) .type {
  487. padding: 0 0 0 20px;
  488. color: darkorange;
  489. font-weight: bold;
  490. font-size: 16px;
  491. }
  492. .gongqiuInfo .threeLi p:last-child {
  493. font-size: 16px;
  494. }
  495. .gongqiuInfo .threeLi a {
  496. font-size: 16px;
  497. float: left;
  498. width: 100%;
  499. padding: 9px 0;
  500. text-align: center;
  501. color: #fff;
  502. background: orangered;
  503. }
  504. .gongqiuInfo .fourLi {
  505. float: left;
  506. width: 565px;
  507. border: 1px solid #ccc;
  508. margin: 10px;
  509. padding: 11px 0;
  510. }
  511. .gongqiuInfo .fourLi:hover {
  512. border: 1px solid yellowgreen;
  513. box-shadow: 0 0 5px yellowgreen;
  514. }
  515. .gongqiuInfo .fourLi img {
  516. width: 100px;
  517. height: 100px;
  518. border-radius: 90px;
  519. float: left;
  520. }
  521. .gongqiuInfo .fourLi p {
  522. float: left;
  523. width: 82%;
  524. padding: 5px 0 7px 0;
  525. font-size: 16px;
  526. }
  527. .gongqiuInfo .fourLi p .name {
  528. font-weight: bold;
  529. display: inline-block;
  530. width: 65%;
  531. }
  532. .fangtan {
  533. height: 560px;
  534. overflow: hidden;
  535. }
  536. .fangtan .jiabin {
  537. float: left;
  538. width: 400px;
  539. border-radius: 5px;
  540. box-shadow: 0 0 5px #ccc;
  541. padding: 0 10px 0px 10px;
  542. margin: 4px 15px 0 3px;
  543. ;
  544. }
  545. .jiabin .jiabintop {
  546. height: 30px;
  547. line-height: 30px;
  548. }
  549. .jiabin .jiabintop span {
  550. display: inline-block;
  551. padding: 0 10px;
  552. height: 30px;
  553. color: #fff;
  554. background-color: red;
  555. border-bottom-left-radius: 10px;
  556. border-bottom-right-radius: 10px;
  557. }
  558. .jiabin .jiabintop a {
  559. float: right;
  560. }
  561. .jiabin .jiabinlist ul li {
  562. float: left;
  563. width: 100%;
  564. border-bottom: 1px dashed #ccc;
  565. padding: 9px 0;
  566. }
  567. .jiabin .jiabinlist ul li:hover p span:first-child {
  568. color: #0e90d2;
  569. }
  570. .jiabin .jiabinlist ul li img {
  571. float: left;
  572. width: 100px;
  573. height: 100px;
  574. }
  575. .jiabin .jiabinlist ul li p {
  576. float: left;
  577. width: 73%;
  578. padding: 0 0 0 10px;
  579. }
  580. .jiabin .jiabinlist ul li p span:first-child {
  581. float: left;
  582. width: 100%;
  583. font-size: 18px;
  584. }
  585. .jiabin .jiabinlist ul li p span:nth-child(2n) {
  586. float: left;
  587. width: 100%;
  588. font-size: 14px;
  589. padding: 5px 0;
  590. }
  591. .jiabin .jiabinlist ul li p span:last-child {
  592. float: left;
  593. width: 100%;
  594. font-size: 14px;
  595. color: #888;
  596. overflow: hidden;
  597. text-overflow: ellipsis;
  598. -webkit-line-clamp: 3;
  599. word-break: break-all;
  600. display: -webkit-box;
  601. -webkit-box-orient: vertical;
  602. }
  603. .fangtan .luyan {
  604. float: left;
  605. width: 400px;
  606. border-radius: 5px;
  607. box-shadow: 0 0 5px #ccc;
  608. padding: 0 10px 0px 10px;
  609. margin: 4px 15px 0 3px;
  610. }
  611. .luyanList {
  612. padding: 10px 0 0 0;
  613. }
  614. .luyanList ul li {
  615. float: left;
  616. border: 1px solid #ccc;
  617. border-radius: 10px;
  618. padding: 5px 10px;
  619. margin: 0 0 7px 0;
  620. }
  621. .luyanList ul li:hover {
  622. box-shadow: 0 0 5px red;
  623. }
  624. .luyanList ul li p:first-child span:first-child {
  625. font-size: 18px;
  626. float: left;
  627. width: 80%;
  628. }
  629. .luyanList ul li p:first-child span:last-child {
  630. float: left;
  631. width: 20%;
  632. color: #999;
  633. }
  634. .luyanList ul li p:last-child span {
  635. float: left;
  636. width: 100%;
  637. padding: 5px 0;
  638. font-size: 14px;
  639. color: #666;
  640. }
  641. .fangtan .chat {
  642. float: left;
  643. width: 358px;
  644. height: 545px;
  645. border-radius: 5px;
  646. box-shadow: 0 0 5px #ccc;
  647. padding: 0 10px 0px 10px;
  648. margin: 4px 0px 0 3px;
  649. }
  650. .chat .luyanTop {
  651. height: 30px;
  652. line-height: 30px;
  653. }
  654. .chat .luyanTop span:first-child {
  655. display: inline-block;
  656. padding: 0 10px;
  657. height: 30px;
  658. color: #fff;
  659. background-color: red;
  660. border-bottom-left-radius: 10px;
  661. border-bottom-right-radius: 10px;
  662. }
  663. .chat .luyanTop .icon {
  664. float: right;
  665. background: #f2f4f5;
  666. border-radius: 20px;
  667. color: #666;
  668. padding: 0 5px;
  669. margin: 0 0 0 5px;
  670. }
  671. .chat .luyanTop .icon {
  672. cursor: pointer;
  673. }
  674. .chat .chatList {
  675. height: 505px;
  676. background: #fff;
  677. }
  678. .chat .chatList ul {
  679. float: left;
  680. width: 100%;
  681. height: 454px;
  682. padding: 5px 0 0 0;
  683. overflow: auto;
  684. margin: 10px 0 0 0;
  685. }
  686. .chat .chatList ul li {
  687. padding: 0 10px;
  688. margin: 0 0 5px 0;
  689. }
  690. .chat .chatList ul li span:first-child {
  691. color: #666;
  692. padding: 0 5px 0 0;
  693. }
  694. .chat .chatList .input {
  695. height: 40px;
  696. line-height: 40px;
  697. float: left;
  698. width: 100%;
  699. }
  700. .chat .chatList .input input {
  701. border: 1px solid #ccc;
  702. float: left;
  703. width: 80%;
  704. }
  705. .chat .chatList .input button {
  706. float: left;
  707. background: forestgreen;
  708. color: #fff;
  709. height: 42px;
  710. width: 67px;
  711. }
  712. /* 直播大厅结束*/
  713. /* 科技超市开始 */
  714. .superbanner {
  715. position: relative;
  716. height: 250px;
  717. overflow: hidden;
  718. }
  719. .superbanner img {
  720. width: 100%;
  721. height: 250px;
  722. overflow: hidden;
  723. }
  724. .supertop {
  725. position: absolute;
  726. top: 0;
  727. height: 40px;
  728. width: 100%;
  729. color: #fff;
  730. background: #2152991f;
  731. }
  732. .supertop p:first-child {
  733. float: left;
  734. height: 40px;
  735. line-height: 40px;
  736. font-size: 16px;
  737. }
  738. .supertop p:last-child {
  739. float: left;
  740. height: 40px;
  741. line-height: 40px;
  742. margin: 0 0 0 10px;
  743. }
  744. .supertop p:last-child button {
  745. color: #fff;
  746. }
  747. .superlogo {
  748. position: absolute;
  749. top: 40px;
  750. width: 100%;
  751. padding: 50px 0 0 0;
  752. }
  753. .superlogo img {
  754. width: 76px;
  755. height: 64px;
  756. overflow: hidden;
  757. }
  758. .superlogo span {
  759. color: #2d64b3;
  760. font-size: 36px;
  761. font-family: cursive;
  762. text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
  763. font-weight: 600;
  764. position: relative;
  765. top: 10px;
  766. padding: 0 0 0 10px;
  767. }
  768. .supermenu {
  769. position: absolute;
  770. bottom: 0;
  771. width: 100%;
  772. height: 50px;
  773. }
  774. .supermenu .info {
  775. height: 50px;
  776. line-height: 50px;
  777. background: #0085d2;
  778. }
  779. .supermenu .info ul li {
  780. float: left;
  781. height: 50px;
  782. line-height: 50px;
  783. padding: 0 82px;
  784. font-size: 20px;
  785. border-right: 1px solid #76bdfe;
  786. }
  787. .supermenu .info ul .active {
  788. background-color: #fe950e;
  789. }
  790. .supermenu .info ul li a {
  791. color: #fff;
  792. }
  793. .supermenu .info ul li:last-child {
  794. border-right: 0;
  795. padding: 0 70px;
  796. }
  797. /* 科技超市主体开始 */
  798. .supermain {}
  799. .supermain .superOne {
  800. float: left;
  801. width: 570px;
  802. height: 500px;
  803. overflow: hidden;
  804. margin: 20px 30px 20px 0;
  805. box-shadow: 0 0 5px #0085D2;
  806. border-radius: 10px;
  807. background: #FFFFFF;
  808. }
  809. .supermain .superOne .superOneTop {
  810. font-size: 18px;
  811. line-height: 40px;
  812. color: #005293;
  813. margin: 0 10px;
  814. border-bottom: 1px dashed #ccc;
  815. }
  816. .supermain .superOne .superOneTop .more {
  817. float: right;
  818. margin: 0 10px;
  819. }
  820. .supermain .superOne .superoneInfo ul li {
  821. float: left;
  822. width: 97%;
  823. padding: 15px 10px 10px 10px;
  824. }
  825. .supermain .superOne .superoneInfo ul li:hover {
  826. cursor: pointer;
  827. }
  828. .supermain .superOne .superoneInfo ul li:hover p:first-child {
  829. color: #005293;
  830. font-weight: bold;
  831. }
  832. .supermain .superOne .superoneInfo ul li:hover p:first-child span:last-child {
  833. color: #005293;
  834. font-weight: bold;
  835. }
  836. .supermain .superOne .superoneInfo ul li p:first-child {
  837. font-size: 18px;
  838. }
  839. .supermain .superOne .superoneInfo ul li p:first-child span:first-child {
  840. display: inline-block;
  841. width: 79%;
  842. }
  843. .supermain .superOne .superoneInfo ul li p:first-child span:last-child {
  844. font-size: 16px;
  845. display: inline-block;
  846. width: 20%;
  847. text-align: center;
  848. color: #666;
  849. position: relative;
  850. top: -5px;
  851. }
  852. .supermain .superOne .superoneInfo ul li p:nth-child(2) {
  853. font-size: 16px;
  854. padding: 5px 0;
  855. color: #666;
  856. }
  857. .supermain .superOne .superoneInfo ul li p:last-child {
  858. font-size: 16px;
  859. color: #666;
  860. padding: 0 0 10px 0;
  861. }
  862. .supermain .superOne .superoneInfo ul li p:last-child span {
  863. color: #ff0000;
  864. font-weight: bold;
  865. }
  866. .supermain .superTwo {
  867. width: 600px;
  868. margin: 20px 0 20px 0;
  869. }
  870. .supermain .superTwo .superTwoInfo {}
  871. .supermain .superTwo .superTwoInfo ul li {
  872. float: left;
  873. width: 97%;
  874. padding: 6px 10px;
  875. }
  876. .supermain .superTwo .superTwoInfo ul li:hover {
  877. background: #CCCCCC3f;
  878. }
  879. .supermain .superTwo .superTwoInfo ul li img {
  880. float: left;
  881. width: 100px;
  882. height: 100px;
  883. border-radius: 90px;
  884. }
  885. .supermain .superTwo .superTwoInfo ul li div {
  886. float: left;
  887. width: 82%;
  888. }
  889. .supermain .superTwo .superTwoInfo ul li div p:first-child {
  890. float: left;
  891. width: 98%;
  892. padding: 0 10px;
  893. }
  894. .supermain .superTwo .superTwoInfo ul li div p:first-child span:first-child {
  895. float: left;
  896. width: 70%;
  897. font-size: 18px;
  898. font-weight: bold;
  899. }
  900. .supermain .superTwo .superTwoInfo ul li div p:first-child span:last-child {
  901. float: left;
  902. width: 30%;
  903. text-align: right;
  904. font-size: 16px;
  905. color: #666;
  906. }
  907. .supermain .superTwo .superTwoInfo ul li div p:nth-child(2) {
  908. float: left;
  909. width: 99%;
  910. font-size: 16px;
  911. color: #666;
  912. padding: 5px 10px;
  913. }
  914. .supermain .superTwo .superTwoInfo ul li div p:last-child {
  915. float: left;
  916. width: 99%;
  917. font-size: 16px;
  918. color: #666;
  919. padding: 5px 10px;
  920. }
  921. .supermain .superThree {
  922. height: 524px;
  923. margin: 0 30px 0 0;
  924. }
  925. .supermain .superThree .superThreeInfo {}
  926. .supermain .superThree .superThreeInfo ul li {
  927. float: left;
  928. width: 97%;
  929. border-bottom: 1px dashed #CCCCCC;
  930. margin: 0 10px;
  931. padding: 10px 0;
  932. }
  933. .supermain .superThree .superThreeInfo ul li img {
  934. float: left;
  935. width: 100px;
  936. height: 100px;
  937. margin: 0 15px 0 0;
  938. }
  939. .supermain .superThree .superThreeInfo ul li div {
  940. float: left;
  941. width: 79%;
  942. }
  943. .supermain .superThree .superThreeInfo ul li div p:first-child {
  944. float: left;
  945. width: 100%;
  946. font-size: 18px;
  947. }
  948. .supermain .superThree .superThreeInfo ul li div p:nth-child(2) {
  949. float: left;
  950. width: 100%;
  951. font-size: 16px;
  952. color: #666;
  953. padding: 10px 0;
  954. }
  955. .supermain .superThree .superThreeInfo ul li div p:last-child {
  956. float: left;
  957. width: 100%;
  958. }
  959. .supermain .superThree .superThreeInfo ul li div p:last-child button {
  960. float: left;
  961. padding: 5px 15px;
  962. background: forestgreen;
  963. color: #fff;
  964. margin: 8px 15px 0 0;
  965. }
  966. .superFour {
  967. margin: 0 !important;
  968. height: 524px !important;
  969. }
  970. .superFive {
  971. width: 100% !important;
  972. height: 520px !important;
  973. margin: 20px 0 !important;
  974. }
  975. .superFive .superFiveInfo {
  976. float: left;
  977. width: 100%;
  978. }
  979. .superFive .superFiveInfo ul li {
  980. float: left;
  981. width: 48%;
  982. margin: 10px;
  983. background: #f3f3f3;
  984. }
  985. .superFive .superFiveInfo ul li:hover {
  986. cursor: pointer;
  987. }
  988. .superFive .superFiveInfo ul li img {
  989. float: left;
  990. width: 100px;
  991. height: 100px;
  992. margin: 0 15px 0 0;
  993. }
  994. .superFive .superFiveInfo ul li div {
  995. float: left;
  996. width: 80%;
  997. }
  998. .superFive .superFiveInfo ul li div p:first-child {
  999. float: left;
  1000. width: 100%;
  1001. font-size: 16px;
  1002. padding: 10px 0 0 0;
  1003. color: #60636d;
  1004. }
  1005. .superFive .superFiveInfo ul li div p:nth-child(2) {
  1006. float: left;
  1007. width: 100%;
  1008. font-size: 14px;
  1009. color: #60636d;
  1010. padding: 10px 0 0 0;
  1011. }
  1012. .superFive .superFiveInfo ul li div p:nth-child(2) span:first-child {
  1013. float: left;
  1014. width: 70%;
  1015. }
  1016. .superFive .superFiveInfo ul li div p:nth-child(2) span:last-child {
  1017. float: left;
  1018. width: 30%;
  1019. text-align: center;
  1020. }
  1021. .superFive .superFiveInfo ul li div p:last-child {
  1022. float: left;
  1023. width: 100%;
  1024. font-size: 14px;
  1025. padding: 10px 0 0 0;
  1026. color: #60636d;
  1027. }
  1028. .superFive .superFiveInfo ul li div p:last-child span:first-child {
  1029. float: left;
  1030. width: 65%;
  1031. }
  1032. .superFive .superFiveInfo ul li div p:last-child span:last-child {
  1033. float: left;
  1034. width: 35%;
  1035. text-align: center;
  1036. }
  1037. /* 科技超市主体结束 */
  1038. .superdown {
  1039. padding: 15px 0 0 0;
  1040. height: 135px;
  1041. overflow: hidden;
  1042. background-color: #3a3637;
  1043. color: #fff;
  1044. }
  1045. .superdown p {
  1046. font-size: 14px;
  1047. color: #999999;
  1048. font-family: 微软雅黑;
  1049. padding: 10px 200px;
  1050. }
  1051. /* 科技超市结束 */
  1052. /* 创新服务开始 */
  1053. /* 创新服务top+down取于科技超市,无需改动 */
  1054. /* 创新服务主体开始 */
  1055. .servicemain {
  1056. float: left;
  1057. }
  1058. .servicemain .serviceOne {
  1059. float: left;
  1060. width: 100%;
  1061. height: 535px;
  1062. margin: 10px 0 20px 0;
  1063. }
  1064. .servicemain .serviceOne .left {
  1065. float: left;
  1066. width: 558px;
  1067. height: 535px;
  1068. margin: 0 30px 0 0;
  1069. box-shadow: 0 0 5px #0085d2;
  1070. background: #fff;
  1071. border-radius: 5px;
  1072. }
  1073. .servicemain .serviceOne .left .leftTop {
  1074. border-bottom: 1px dashed #ccc;
  1075. margin: 0 20px;
  1076. }
  1077. .servicemain .serviceOne .left .leftTop span {
  1078. font-size: 18px;
  1079. height: 50px;
  1080. display: inline-block;
  1081. line-height: 50px;
  1082. padding: 0 10px;
  1083. }
  1084. .servicemain .serviceOne .left .leftTop a {
  1085. float: right;
  1086. height: 50px;
  1087. line-height: 50px;
  1088. padding: 0 15px;
  1089. font-size: 16px;
  1090. color: #337ab7;
  1091. }
  1092. .servicemain .serviceOne .left .list ul li {
  1093. float: left;
  1094. width: 96%;
  1095. padding: 10px;
  1096. border-bottom: 1px solid #ccc;
  1097. }
  1098. .servicemain .serviceOne .left .list ul li:hover {
  1099. cursor: pointer;
  1100. }
  1101. .servicemain .serviceOne .left .list ul li:hover .info p:first-child {
  1102. color: #00A4FF;
  1103. }
  1104. .servicemain .serviceOne .left .list ul li .image {
  1105. float: left;
  1106. width: 100px;
  1107. height: 100px;
  1108. }
  1109. .servicemain .serviceOne .left .list ul li .image img {
  1110. border-radius: 90px;
  1111. }
  1112. .servicemain .serviceOne .left .list ul li .info {
  1113. float: left;
  1114. width: 78%;
  1115. padding: 0 0 0 15px;
  1116. }
  1117. .servicemain .serviceOne .left .list ul li .info p:first-child {
  1118. font-size: 18px;
  1119. font-weight: bold;
  1120. }
  1121. .servicemain .serviceOne .left .list ul li .info p:last-child {
  1122. font-size: 14px;
  1123. color: #666666;
  1124. padding: 10px 0 0 0;
  1125. overflow: hidden;
  1126. text-overflow: ellipsis;
  1127. -webkit-line-clamp: 3;
  1128. word-break: break-all;
  1129. display: -webkit-box;
  1130. -webkit-box-orient: vertical;
  1131. }
  1132. .servicemain .serviceOne .right {
  1133. float: left;
  1134. width: 608px;
  1135. height: 535px;
  1136. box-shadow: 0 0 5px #0085d2;
  1137. background: #fff;
  1138. border-radius: 5px;
  1139. margin: 0;
  1140. overflow: hidden;
  1141. }
  1142. .servicemain .serviceOne .right .rightTop {
  1143. border-bottom: 1px dashed #ccc;
  1144. margin: 0 20px;
  1145. }
  1146. .servicemain .serviceOne .right .rightTop span {
  1147. font-size: 18px;
  1148. height: 50px;
  1149. display: inline-block;
  1150. line-height: 50px;
  1151. padding: 0 10px;
  1152. }
  1153. .servicemain .serviceOne .right .rightTop a {
  1154. float: right;
  1155. height: 50px;
  1156. line-height: 50px;
  1157. padding: 0 15px;
  1158. font-size: 16px;
  1159. color: #337ab7;
  1160. }
  1161. .servicemain .serviceOne .right .list ul li {
  1162. float: left;
  1163. width: 280px;
  1164. margin: 15px 10px 0px 10px;
  1165. text-align: center;
  1166. height: 220px;
  1167. border: 1px solid #ccc;
  1168. position: relative;
  1169. }
  1170. .servicemain .serviceOne .right .list ul li:hover {
  1171. cursor: pointer;
  1172. }
  1173. .servicemain .serviceOne .right .list ul li:hover p {
  1174. color: #005293;
  1175. font-weight: bold;
  1176. }
  1177. .servicemain .serviceOne .right img {
  1178. width: 280px;
  1179. height: 220px;
  1180. }
  1181. .servicemain .serviceOne .right p {
  1182. position: absolute;
  1183. bottom: 0;
  1184. height: 30px;
  1185. line-height: 30px;
  1186. padding: 0 5px;
  1187. width: 97%;
  1188. text-align: left;
  1189. background: #76bdfe5f;
  1190. font-size: 16px;
  1191. }
  1192. .servicemain .serviceTwo {
  1193. float: left;
  1194. width: 100%;
  1195. height: 500px;
  1196. margin: 0 0 20px 0;
  1197. box-shadow: 0 0 5px #0085d2;
  1198. background: #fff;
  1199. }
  1200. .servicemain .serviceTwo .serviceTop {
  1201. border-bottom: 1px dashed #ccc;
  1202. margin: 0 20px 20px 20px;
  1203. }
  1204. .servicemain .serviceTwo .serviceTop span {
  1205. font-size: 18px;
  1206. height: 50px;
  1207. display: inline-block;
  1208. line-height: 50px;
  1209. padding: 0 10px;
  1210. }
  1211. .servicemain .serviceTwo .serviceTop a {
  1212. float: right;
  1213. height: 50px;
  1214. line-height: 50px;
  1215. padding: 0 15px;
  1216. font-size: 16px;
  1217. color: #337ab7;
  1218. }
  1219. .servicemain .serviceTwo .list {
  1220. float: left;
  1221. padding: 0 20px;
  1222. }
  1223. .servicemain .serviceTwo .list ul li {
  1224. float: left;
  1225. width: 570px;
  1226. border: 1px dashed #ccc;
  1227. margin: 0 15px 20px 0;
  1228. padding: 15px 0px;
  1229. }
  1230. .servicemain .serviceTwo .list ul li:hover {
  1231. cursor: pointer;
  1232. border: 1px dashed transparent;
  1233. box-shadow: 0 0 5px red;
  1234. }
  1235. .servicemain .serviceTwo .list ul li p:first-child {
  1236. padding: 0 10px 5px 10px;
  1237. }
  1238. .servicemain .serviceTwo .list ul li p:first-child span:first-child {
  1239. display: inline-block;
  1240. width: 69%;
  1241. font-size: 18px;
  1242. }
  1243. .servicemain .serviceTwo .list ul li p:first-child span:last-child {
  1244. font-size: 14px;
  1245. color: #666;
  1246. display: inline-block;
  1247. width: 30%;
  1248. text-align: right;
  1249. }
  1250. .servicemain .serviceTwo .list ul li p:nth-child(2n) {
  1251. padding: 5px 10px;
  1252. font-size: 16px;
  1253. }
  1254. .servicemain .serviceTwo .list ul li p:last-child {
  1255. padding: 0 10px;
  1256. font-size: 16px;
  1257. color: #666;
  1258. overflow: hidden;
  1259. text-overflow: ellipsis;
  1260. -webkit-line-clamp: 4;
  1261. word-break: break-all;
  1262. display: -webkit-box;
  1263. -webkit-box-orient: vertical;
  1264. line-height: 25px;
  1265. }
  1266. .servicemain .serviceTwo .list ul li:nth-child(2n) {
  1267. margin: 0;
  1268. }
  1269. /* 创新服务主体结束 */
  1270. /* 创新服务结束 */
  1271. /* 动态监测开始 */
  1272. /* 动态监测top+down取于科技超市,无需改动 */
  1273. /* 动态监测主体开始 */
  1274. .dynamicmain {
  1275. height: 300px;
  1276. }
  1277. .dynamicinfo1 {
  1278. box-shadow: 0 0 10px #2d64b3;
  1279. border-radius: 10px;
  1280. margin: 10px 20px 0 0;
  1281. width: 565px;
  1282. float: left;
  1283. height: 448px;
  1284. overflow: hidden;
  1285. background: #fff;
  1286. }
  1287. .dynamicinfo2 {
  1288. box-shadow: 0 0 10px #2d64b3;
  1289. border-radius: 10px;
  1290. margin: 10px 0 20px 0;
  1291. width: 615px;
  1292. float: left;
  1293. height: 448px;
  1294. overflow: hidden;
  1295. background: #fff;
  1296. }
  1297. .dynamicmaintitle {
  1298. font-size: 18px;
  1299. color: #22529a;
  1300. padding: 20px 20px 0 20px;
  1301. }
  1302. .dynamicmore {
  1303. float: right;
  1304. }
  1305. .dynamictables {
  1306. padding: 0 10px;
  1307. float: left;
  1308. height: 394px;
  1309. overflow: hidden;
  1310. }
  1311. .dynamictable {
  1312. margin: -10px 0 0 0;
  1313. }
  1314. .dynamictable td,
  1315. th {
  1316. border: 1px solid #cad9ea;
  1317. color: #666;
  1318. height: 34px;
  1319. text-align: center;
  1320. width: 134px;
  1321. }
  1322. .dynamictable tr:hover td {
  1323. background-color: #005293;
  1324. color: #ffffff;
  1325. }
  1326. .dynamictable2 tr:hover td {
  1327. background-color: #005293;
  1328. color: #ffffff;
  1329. }
  1330. .dynamictable3 tr:hover td {
  1331. background-color: #005293;
  1332. color: #ffffff;
  1333. }
  1334. .dynamictable thead th {
  1335. background-color: #CCE8EB;
  1336. width: 100px;
  1337. }
  1338. .dynamictable tr:nth-child(odd) {
  1339. background: #fff;
  1340. }
  1341. .dynamictable tr:nth-child(even) {
  1342. background: #F5FAFA;
  1343. }
  1344. .dynamictable2 {
  1345. margin: -10px 0 0 0;
  1346. }
  1347. .dynamictable2 td,
  1348. th {
  1349. border: 1px solid #cad9ea;
  1350. color: #666;
  1351. height: 34px;
  1352. text-align: center;
  1353. width: 147px;
  1354. }
  1355. .dynamictable2 thead th {
  1356. background-color: #CCE8EB;
  1357. width: 100px;
  1358. }
  1359. .dynamictable2 tr:nth-child(odd) {
  1360. background: #fff;
  1361. }
  1362. .dynamictable2 tr:nth-child(even) {
  1363. background: #F5FAFA;
  1364. }
  1365. .dynamictables3 {
  1366. padding: 0 10px;
  1367. float: left;
  1368. height: 405px;
  1369. overflow: hidden;
  1370. width: 1180px;
  1371. }
  1372. .dynamictable3 {
  1373. margin: -10px 0 0 0;
  1374. }
  1375. .dynamictable3 td,
  1376. th {
  1377. border: 1px solid #cad9ea;
  1378. color: #666;
  1379. height: 34px;
  1380. text-align: center;
  1381. width: 293px;
  1382. }
  1383. .dynamictable3 thead th {
  1384. background-color: #CCE8EB;
  1385. width: 100px;
  1386. }
  1387. .dynamictable3 tr:nth-child(odd) {
  1388. background: #fff;
  1389. }
  1390. .dynamictable3 tr:nth-child(even) {
  1391. background: #F5FAFA;
  1392. }
  1393. .dynamicinfo3 {
  1394. box-shadow: 0 0 10px #2d64b3;
  1395. border-radius: 10px;
  1396. margin: 10px 0 10px 0;
  1397. height: 465px;
  1398. float: left;
  1399. overflow: hidden;
  1400. width: 1200px;
  1401. background: #fff;
  1402. }
  1403. /* 动态监测主体结束 */
  1404. /* 动态监测结束 */
  1405. /* 技术培训开始 */
  1406. /* 技术培训top+down取于科技超市,无需改动 */
  1407. /* 技术培训主体开始 */
  1408. .technicalmain {
  1409. background-color: #F5F5F54f;
  1410. }
  1411. .technicalmain .technical_left {
  1412. float: left;
  1413. width: 590px;
  1414. height: 760px;
  1415. margin: 10px 0 20px 0;
  1416. background-color: #FFFFFF;
  1417. box-shadow: 0 0 5px #005293;
  1418. border-radius: 5px;
  1419. overflow: hidden;
  1420. }
  1421. .technicalmain .technical_left_title {
  1422. font-size: 18px;
  1423. line-height: 40px;
  1424. color: #005293;
  1425. margin: 0 10px;
  1426. border-bottom: 1px dashed #ccc;
  1427. }
  1428. .technicalmain .technical_left_title .more {
  1429. float: right;
  1430. margin: 0 10px;
  1431. }
  1432. .technicalmain .train li {
  1433. border-bottom: 1px solid #929292;
  1434. margin: 0 10px;
  1435. padding: 15px 0;
  1436. float: left;
  1437. }
  1438. .technicalmain .train li:hover {
  1439. cursor: pointer;
  1440. }
  1441. .technicalmain .train li:hover p:nth-child(2) {
  1442. font-weight: bold;
  1443. color: #005293;
  1444. }
  1445. .technicalmain .train li:last-child {
  1446. border-bottom: none;
  1447. }
  1448. .technicalmain .train li p:first-child {
  1449. font-size: 18px;
  1450. color: #FFFFFF;
  1451. background-color: #005293;
  1452. text-align: center;
  1453. float: left;
  1454. padding: 0 5px;
  1455. }
  1456. .technicalmain .train li p:nth-child(2) {
  1457. font-size: 18px;
  1458. margin: 10px;
  1459. float: left;
  1460. overflow: hidden;
  1461. text-overflow: ellipsis;
  1462. white-space: nowrap;
  1463. padding: 0 0 0 15px;
  1464. width: 78%;
  1465. }
  1466. .technicalmain .train li p:last-child {
  1467. font-size: 15px;
  1468. color: #929292;
  1469. padding: 5px 0 0 125px;
  1470. margin: 5px;
  1471. float: left;
  1472. overflow: hidden;
  1473. text-overflow: ellipsis;
  1474. -webkit-line-clamp: 3;
  1475. word-break: break-all;
  1476. display: -webkit-box;
  1477. -webkit-box-orient: vertical;
  1478. }
  1479. .technical_right {
  1480. float: right;
  1481. width: 590px;
  1482. height: 760px;
  1483. margin: 10px 0 20px 0;
  1484. background-color: #FFFFFF;
  1485. box-shadow: 0 0 5px #005293;
  1486. border-radius: 5px;
  1487. overflow: hidden;
  1488. }
  1489. .technicalmain .technical_right_title {
  1490. font-size: 18px;
  1491. line-height: 40px;
  1492. color: #005293;
  1493. margin: 0 10px;
  1494. border-bottom: 1px dashed #ccc;
  1495. }
  1496. .technicalmain .technical_right_title .more {
  1497. float: right;
  1498. margin: 0 10px;
  1499. }
  1500. .technical_right .guide li {
  1501. float: left;
  1502. margin: 0 10px;
  1503. width: 97%;
  1504. padding: 5px 0;
  1505. }
  1506. .technical_right .guide li:hover {
  1507. cursor: pointer;
  1508. }
  1509. .technical_right .guide li:hover span:first-child {
  1510. color: #005293;
  1511. font-weight: bold;
  1512. }
  1513. .technical_right .guide li:hover span:last-child {
  1514. color: #005293;
  1515. font-weight: bold;
  1516. }
  1517. .technical_right .guide li:nth-child(7) {
  1518. border-bottom: 1px dashed #0085D2;
  1519. padding: 0 0 15px 0;
  1520. }
  1521. .technical_right .guide li:nth-child(8) {
  1522. padding: 15px 0 0 0;
  1523. }
  1524. .technical_right .guide li span:first-child {
  1525. line-height: 40px;
  1526. font-size: 18px;
  1527. width: 400px;
  1528. margin: 0 10px;
  1529. float: left;
  1530. overflow: hidden;
  1531. text-overflow: ellipsis;
  1532. white-space: nowrap;
  1533. }
  1534. .technical_right .guide li span:last-child {
  1535. line-height: 40px;
  1536. font-size: 15px;
  1537. width: 100px;
  1538. float: right;
  1539. color: #929292;
  1540. }
  1541. /* 技术培训主体结束 */
  1542. /* 技术培训结束 */
  1543. /* 无图片列表开始 */
  1544. .newlistmain {
  1545. height: 600px;
  1546. margin: 10px 0 20px 0;
  1547. box-shadow: 0 0 10px #2d64b3;
  1548. border-radius: 10px;
  1549. background: #fff;
  1550. }
  1551. .newlistmain .newlistTop {
  1552. height: 40px;
  1553. line-height: 40px;
  1554. margin: 15px 40px 20px 40px;
  1555. border-bottom: 1px solid #ccc;
  1556. font-size: 18px;
  1557. padding: 10px 0 0 0;
  1558. }
  1559. .newlistmain .newlistTopt {
  1560. width: 10px;
  1561. height: 10px;
  1562. background-color: #005293;
  1563. margin: 0 10px 0 0px;
  1564. }
  1565. .newlistmain .newlisttitle {
  1566. color: #005293;
  1567. }
  1568. .newlistmain .newlistcontext {
  1569. font-size: 16px;
  1570. /* height: 680px; */
  1571. padding: 0 40px 0 40px;
  1572. }
  1573. .newlistmain .newlistcontext ul li {
  1574. float: left;
  1575. width: 100%;
  1576. padding: 12px 0;
  1577. }
  1578. .newlistmain .newlistcontext ul li:hover {
  1579. color: #005293;
  1580. font-weight: bold;
  1581. }
  1582. .newlistmain .newlistcontext ul li p {
  1583. float: left;
  1584. width: 995px;
  1585. font-size: 16px;
  1586. overflow: hidden;
  1587. text-overflow: ellipsis;
  1588. white-space: nowrap;
  1589. padding: 0 30px 0 0;
  1590. }
  1591. .newlistmain .newlistcontext ul li span {
  1592. font-size: 16px;
  1593. width: 120px;
  1594. }
  1595. .newlistmain .newlistpage {
  1596. float: left;
  1597. width: 100%;
  1598. text-align: center;
  1599. height: 40px;
  1600. line-height: 40px;
  1601. margin: 15px 0;
  1602. }
  1603. /* 无图片列表top+down取于科技超市,无需改动 */
  1604. /* 无图片列表结束 */
  1605. /* 图片列表开始 */
  1606. .newimagelistmain {
  1607. height: 1440px;
  1608. margin: 15px 0 20px 0;
  1609. box-shadow: 0 0 10px #2d64b3;
  1610. border-radius: 10px;
  1611. }
  1612. .newimagelistmain .newimagelistTop {
  1613. height: 40px;
  1614. line-height: 40px;
  1615. margin: 0 40px 20px 40px;
  1616. border-bottom: 1px solid #ccc;
  1617. font-size: 18px;
  1618. padding: 10px 0 0 0;
  1619. }
  1620. .newimagelistmain .newimagelistTopt {
  1621. width: 10px;
  1622. height: 10px;
  1623. background-color: #005293;
  1624. margin: 0 10px 0 0px;
  1625. }
  1626. .newimagelistmain .newimagelisttitle {
  1627. color: #005293;
  1628. }
  1629. .newimagelistmain .newimagelistcontext {
  1630. font-size: 16px;
  1631. padding: 0 40px 0 40px;
  1632. height: 1250px;
  1633. }
  1634. .nweimagelistleft {
  1635. width: 150px;
  1636. height: 95px;
  1637. float: left;
  1638. padding: 0 20px 0 0;
  1639. }
  1640. .nweimagelistunders {
  1641. float: left;
  1642. height: 95px;
  1643. width: 950px;
  1644. }
  1645. .nweimagelistunder {
  1646. width: 800px;
  1647. overflow: hidden;
  1648. text-overflow: ellipsis;
  1649. white-space: nowrap;
  1650. float: left;
  1651. padding: 5px 0 0 0;
  1652. }
  1653. .nweimagelistright {
  1654. width: 150px;
  1655. float: left;
  1656. text-align: right;
  1657. padding: 5px 0 0 0;
  1658. }
  1659. .newimagelistspanimg {
  1660. height: 95px;
  1661. width: 150px;
  1662. text-align: right;
  1663. }
  1664. .nweimagelistcontext {
  1665. float: left;
  1666. overflow: hidden;
  1667. text-overflow: ellipsis;
  1668. -webkit-line-clamp: 2;
  1669. word-break: break-all;
  1670. display: -webkit-box;
  1671. -webkit-box-orient: vertical;
  1672. padding: 15px 0 3px 0;
  1673. color: #666;
  1674. /*显示行数*/
  1675. }
  1676. .newimagelistcontext ul li {
  1677. height: 100px;
  1678. height: 100px;
  1679. padding: 12px 0;
  1680. border-bottom: 1px dashed #ccc;
  1681. }
  1682. .newimagelistcontext ul li .nweimagelistunder:hover {
  1683. color: #005293;
  1684. font-weight: bold;
  1685. }
  1686. .newimagelistmain .newimagelistpage {
  1687. width: 100%;
  1688. text-align: center;
  1689. height: 40px;
  1690. line-height: 40px;
  1691. padding: 40px 0;
  1692. text-align: center;
  1693. clear: both
  1694. }
  1695. /* 图片列表top+down取于科技超市,无需改动 */
  1696. /* 图片列表开始 */
  1697. /* 信息详情页开始 */
  1698. .detailmain {
  1699. margin: 15px 0 15px 0;
  1700. box-shadow: 0 0 10px #2d64b3;
  1701. border-radius: 10px;
  1702. min-height: 800px;
  1703. }
  1704. .detailtop {
  1705. padding: 20px 0px;
  1706. font-size: 18px;
  1707. line-height: 40px;
  1708. font-weight: normal;
  1709. text-align: left;
  1710. margin: 0;
  1711. text-align: center;
  1712. color: #005293;
  1713. }
  1714. .detailtopleft {
  1715. text-align: center;
  1716. padding: 0 0 10px 0;
  1717. border-bottom: 1px solid #ccc;
  1718. font-size: 16px;
  1719. color: #666666;
  1720. }
  1721. .detailimage {
  1722. text-align: center;
  1723. padding: 20px 0 0 0;
  1724. }
  1725. .detailimg {
  1726. width: 500px;
  1727. height: 300px;
  1728. }
  1729. .detailcontext {
  1730. padding: 20px 40px 60px 40px;
  1731. }
  1732. /* 信息详情top+down取于科技超市,无需改动 */
  1733. /* 信息详情页结束 */
  1734. /* 直播大厅跳转前页面 */
  1735. .liveIndex .info {
  1736. /* background-image: url(../images/beijing.jpg); */
  1737. float: left;
  1738. width: 400px;
  1739. height: 780px;
  1740. background: red;
  1741. position: relative;
  1742. left: 32%;
  1743. top: -145px;
  1744. box-shadow: 0 0 15px #4b0502;
  1745. }
  1746. .liveIndex .info .infoTwo {
  1747. float: left;
  1748. width: 500px;
  1749. background: red;
  1750. height: 500px;
  1751. position: absolute;
  1752. top: 100px;
  1753. border-radius: 360px;
  1754. left: -50px;
  1755. box-shadow: 0 0 30px #4e0000;
  1756. border: 6px solid #a30d0c5f;
  1757. }
  1758. .liveIndex .info .infoThree {
  1759. float: left;
  1760. width: 600px;
  1761. top: 50px;
  1762. position: relative;
  1763. left: -50px;
  1764. }
  1765. .liveIndex .info .infoThree img {
  1766. width: 70px;
  1767. height: 65px;
  1768. margin: 0 0 10px 0;
  1769. }
  1770. .liveIndex .info .infoThree p {
  1771. font-size: 25px;
  1772. color: #fffa93;
  1773. padding: 0 0 10px 0;
  1774. }
  1775. .liveIndex .info .infoThree .title {
  1776. font-size: 40px;
  1777. color: #fffa93;
  1778. font-weight: bold;
  1779. font-family: monospace;
  1780. padding: 0 0 20px 0;
  1781. }
  1782. .liveIndex .info .infoThree a {
  1783. width: 209px;
  1784. height: 50px;
  1785. background: linear-gradient(to bottom, #ffbd00 0%, #fd5a00 100%);
  1786. border-radius: 30px;
  1787. font-size: 22px;
  1788. color: #fff;
  1789. font-family: 楷体;
  1790. margin: 30px 0 0 0;
  1791. font-weight: bold;
  1792. float: left;
  1793. line-height: 50px;
  1794. position: relative;
  1795. left: 195px;
  1796. }
  1797. .liveIndex .info .infoThree i {
  1798. position: relative;
  1799. left: 10px;
  1800. top: -2px;
  1801. }
  1802. .home {
  1803. float: left;
  1804. width: 100%;
  1805. position: relative;
  1806. z-index: 999;
  1807. }
  1808. .home .homeTop .homeTopInfo {
  1809. height: 40px;
  1810. line-height: 40px;
  1811. color: #fff;
  1812. font-size: 18px;
  1813. }
  1814. .home .homeTop .homeTopInfo button {
  1815. color: #fff;
  1816. font-size: 18px;
  1817. }
  1818. .home .homeTop .homeTopLogo {
  1819. padding: 80px 0;
  1820. }
  1821. .home .homeTop .homeTopLogo img {
  1822. width: 80px;
  1823. height: 70px;
  1824. }
  1825. .home .homeTop .homeTopLogo span {
  1826. font-size: 45px;
  1827. color: #fff;
  1828. font-family: cursive;
  1829. position: relative;
  1830. top: 15px;
  1831. left: 15px;
  1832. }
  1833. .home .homeMain {
  1834. float: left;
  1835. width: 100%;
  1836. height: 500px;
  1837. }
  1838. .home .homeMain .live {
  1839. left: 50%;
  1840. top: -11%;
  1841. }
  1842. .home .homeMain .super {
  1843. top: 41%;
  1844. left: 22%;
  1845. }
  1846. .home .homeMain .service {
  1847. top: 96%;
  1848. left: 0%;
  1849. }
  1850. .home .homeMain .dynamic {
  1851. top: 60%;
  1852. left: 68%;
  1853. }
  1854. .home .homeMain .technocal {
  1855. top: 104%;
  1856. left: 97%;
  1857. }
  1858. .home .homeMain nav ul li i {
  1859. font-size: 50px;
  1860. color: #fff;
  1861. margin: 35px 0 15px 0;
  1862. float: left;
  1863. width: 100%;
  1864. }
  1865. .home .homeMain nav ul li p {
  1866. font-size: 20px;
  1867. color: #fff;
  1868. font-weight: bold;
  1869. }
  1870. .home .homeDown{
  1871. float: left;
  1872. width: 100%;
  1873. font-size: 16px;
  1874. color: #fff;
  1875. padding: 20px 0 0 0;
  1876. }
  1877. .home .homeDown p{
  1878. padding: 10px 0 0 120px;
  1879. }