style.css 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235
  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: right;
  740. height: 40px;
  741. line-height: 40px;
  742. font-size: 20px;
  743. color: #000;
  744. font-weight: bold;
  745. font-family: cursive;
  746. }
  747. .supertop p:last-child button {
  748. color: #fff;
  749. }
  750. .superlogo {
  751. position: absolute;
  752. top: 40px;
  753. width: 100%;
  754. padding: 50px 0 0 0;
  755. }
  756. .superlogo img {
  757. width: 76px;
  758. height: 64px;
  759. overflow: hidden;
  760. }
  761. .superlogo span {
  762. color: #2d64b3;
  763. font-size: 36px;
  764. font-family: cursive;
  765. text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
  766. font-weight: 600;
  767. position: relative;
  768. top: 10px;
  769. padding: 0 0 0 10px;
  770. }
  771. .supermenu {
  772. position: absolute;
  773. bottom: 0;
  774. width: 100%;
  775. height: 50px;
  776. }
  777. .supermenu .info {
  778. height: 50px;
  779. line-height: 50px;
  780. background: #0085d2;
  781. }
  782. .supermenu .info ul li {
  783. float: left;
  784. height: 50px;
  785. line-height: 50px;
  786. padding: 0 82px;
  787. font-size: 20px;
  788. border-right: 1px solid #76bdfe;
  789. }
  790. .supermenu .info ul .active {
  791. background-color: #fe950e;
  792. }
  793. .supermenu .info ul li a {
  794. color: #fff;
  795. }
  796. .supermenu .info ul li:last-child {
  797. border-right: 0;
  798. padding: 0 70px;
  799. }
  800. /* 科技超市主体开始 */
  801. .supermain {}
  802. .supermain .superOne {
  803. float: left;
  804. width: 570px;
  805. height: 500px;
  806. overflow: hidden;
  807. margin: 20px 30px 20px 0;
  808. box-shadow: 0 0 5px #0085D2;
  809. border-radius: 10px;
  810. background: #FFFFFF;
  811. }
  812. .supermain .superOne .superOneTop {
  813. font-size: 18px;
  814. line-height: 40px;
  815. color: #005293;
  816. margin: 0 10px;
  817. border-bottom: 1px dashed #ccc;
  818. }
  819. .supermain .superOne .superOneTop .more {
  820. float: right;
  821. margin: 0 10px;
  822. }
  823. .supermain .superOne .superoneInfo ul li {
  824. float: left;
  825. width: 97%;
  826. padding: 15px 10px 10px 10px;
  827. }
  828. .supermain .superOne .superoneInfo ul li:hover {
  829. cursor: pointer;
  830. }
  831. .supermain .superOne .superoneInfo ul li:hover p:first-child {
  832. color: #005293;
  833. font-weight: bold;
  834. }
  835. .supermain .superOne .superoneInfo ul li:hover p:first-child span:last-child {
  836. color: #005293;
  837. font-weight: bold;
  838. }
  839. .supermain .superOne .superoneInfo ul li p:first-child {
  840. font-size: 18px;
  841. }
  842. .supermain .superOne .superoneInfo ul li p:first-child span:first-child {
  843. display: inline-block;
  844. width: 79%;
  845. }
  846. .supermain .superOne .superoneInfo ul li p:first-child span:last-child {
  847. font-size: 16px;
  848. display: inline-block;
  849. width: 20%;
  850. text-align: center;
  851. color: #666;
  852. position: relative;
  853. top: -5px;
  854. }
  855. .supermain .superOne .superoneInfo ul li p:nth-child(2) {
  856. font-size: 16px;
  857. padding: 5px 0;
  858. color: #666;
  859. }
  860. .supermain .superOne .superoneInfo ul li p:last-child {
  861. font-size: 16px;
  862. color: #666;
  863. padding: 0 0 10px 0;
  864. }
  865. .supermain .superOne .superoneInfo ul li p:last-child span {
  866. color: #ff0000;
  867. font-weight: bold;
  868. }
  869. .supermain .superTwo {
  870. width: 600px;
  871. margin: 20px 0 20px 0;
  872. }
  873. .supermain .superTwo .superTwoInfo {}
  874. .supermain .superTwo .superTwoInfo ul li {
  875. float: left;
  876. width: 97%;
  877. padding: 6px 10px;
  878. }
  879. .supermain .superTwo .superTwoInfo ul li:hover {
  880. background: #CCCCCC3f;
  881. }
  882. .supermain .superTwo .superTwoInfo ul li img {
  883. float: left;
  884. width: 100px;
  885. height: 100px;
  886. border-radius: 90px;
  887. }
  888. .supermain .superTwo .superTwoInfo ul li div {
  889. float: left;
  890. width: 82%;
  891. }
  892. .supermain .superTwo .superTwoInfo ul li div p:first-child {
  893. float: left;
  894. width: 98%;
  895. padding: 0 10px;
  896. }
  897. .supermain .superTwo .superTwoInfo ul li div p:first-child span:first-child {
  898. float: left;
  899. width: 70%;
  900. font-size: 18px;
  901. font-weight: bold;
  902. }
  903. .supermain .superTwo .superTwoInfo ul li div p:first-child span:last-child {
  904. float: left;
  905. width: 30%;
  906. text-align: right;
  907. font-size: 16px;
  908. color: #666;
  909. }
  910. .supermain .superTwo .superTwoInfo ul li div p:nth-child(2) {
  911. float: left;
  912. width: 99%;
  913. font-size: 16px;
  914. color: #666;
  915. padding: 5px 10px;
  916. }
  917. .supermain .superTwo .superTwoInfo ul li div p:last-child {
  918. float: left;
  919. width: 99%;
  920. font-size: 16px;
  921. color: #666;
  922. padding: 5px 10px;
  923. }
  924. .supermain .superThree {
  925. height: 524px;
  926. margin: 0 30px 0 0;
  927. }
  928. .supermain .superThree .superThreeInfo {}
  929. .supermain .superThree .superThreeInfo ul li {
  930. float: left;
  931. width: 97%;
  932. border-bottom: 1px dashed #CCCCCC;
  933. margin: 0 10px;
  934. padding: 10px 0;
  935. }
  936. .supermain .superThree .superThreeInfo ul li img {
  937. float: left;
  938. width: 100px;
  939. height: 100px;
  940. margin: 0 15px 0 0;
  941. }
  942. .supermain .superThree .superThreeInfo ul li div {
  943. float: left;
  944. width: 79%;
  945. }
  946. .supermain .superThree .superThreeInfo ul li div p:first-child {
  947. float: left;
  948. width: 100%;
  949. font-size: 18px;
  950. }
  951. .supermain .superThree .superThreeInfo ul li div p:nth-child(2) {
  952. float: left;
  953. width: 100%;
  954. font-size: 16px;
  955. color: #666;
  956. padding: 10px 0;
  957. }
  958. .supermain .superThree .superThreeInfo ul li div p:last-child {
  959. float: left;
  960. width: 100%;
  961. }
  962. .supermain .superThree .superThreeInfo ul li div p:last-child button {
  963. float: left;
  964. padding: 5px 15px;
  965. background: forestgreen;
  966. color: #fff;
  967. margin: 8px 15px 0 0;
  968. }
  969. .superFour {
  970. margin: 0 !important;
  971. height: 524px !important;
  972. }
  973. .superFive {
  974. width: 100% !important;
  975. height: 520px !important;
  976. margin: 20px 0 !important;
  977. }
  978. .superFive .superFiveInfo {
  979. float: left;
  980. width: 100%;
  981. }
  982. .superFive .superFiveInfo ul li {
  983. float: left;
  984. width: 48%;
  985. margin: 10px;
  986. background: #f3f3f3;
  987. }
  988. .superFive .superFiveInfo ul li:hover {
  989. cursor: pointer;
  990. }
  991. .superFive .superFiveInfo ul li img {
  992. float: left;
  993. width: 100px;
  994. height: 100px;
  995. margin: 0 15px 0 0;
  996. }
  997. .superFive .superFiveInfo ul li div {
  998. float: left;
  999. width: 80%;
  1000. }
  1001. .superFive .superFiveInfo ul li div p:first-child {
  1002. float: left;
  1003. width: 100%;
  1004. font-size: 16px;
  1005. padding: 10px 0 0 0;
  1006. color: #60636d;
  1007. }
  1008. .superFive .superFiveInfo ul li div p:nth-child(2) {
  1009. float: left;
  1010. width: 100%;
  1011. font-size: 14px;
  1012. color: #60636d;
  1013. padding: 10px 0 0 0;
  1014. }
  1015. .superFive .superFiveInfo ul li div p:nth-child(2) span:first-child {
  1016. float: left;
  1017. width: 70%;
  1018. }
  1019. .superFive .superFiveInfo ul li div p:nth-child(2) span:last-child {
  1020. float: left;
  1021. width: 30%;
  1022. text-align: center;
  1023. }
  1024. .superFive .superFiveInfo ul li div p:last-child {
  1025. float: left;
  1026. width: 100%;
  1027. font-size: 14px;
  1028. padding: 10px 0 0 0;
  1029. color: #60636d;
  1030. }
  1031. .superFive .superFiveInfo ul li div p:last-child span:first-child {
  1032. float: left;
  1033. width: 65%;
  1034. }
  1035. .superFive .superFiveInfo ul li div p:last-child span:last-child {
  1036. float: left;
  1037. width: 35%;
  1038. text-align: center;
  1039. }
  1040. /* 科技超市主体结束 */
  1041. .superdown {
  1042. padding: 15px 0 0 0;
  1043. height: 135px;
  1044. overflow: hidden;
  1045. background-color: #3a3637;
  1046. color: #fff;
  1047. }
  1048. .superdown p {
  1049. font-size: 14px;
  1050. color: #999999;
  1051. font-family: 微软雅黑;
  1052. padding: 10px 200px;
  1053. }
  1054. /* 科技超市结束 */
  1055. /* 创新服务开始 */
  1056. /* 创新服务top+down取于科技超市,无需改动 */
  1057. /* 创新服务主体开始 */
  1058. .servicemain {
  1059. float: left;
  1060. }
  1061. .servicemain .serviceOne {
  1062. float: left;
  1063. width: 100%;
  1064. height: 535px;
  1065. margin: 10px 0 20px 0;
  1066. }
  1067. .servicemain .serviceOne .left {
  1068. float: left;
  1069. width: 558px;
  1070. height: 535px;
  1071. margin: 0 30px 0 0;
  1072. box-shadow: 0 0 5px #0085d2;
  1073. background: #fff;
  1074. border-radius: 5px;
  1075. }
  1076. .servicemain .serviceOne .left .leftTop {
  1077. border-bottom: 1px dashed #ccc;
  1078. margin: 0 20px;
  1079. }
  1080. .servicemain .serviceOne .left .leftTop span {
  1081. font-size: 18px;
  1082. height: 50px;
  1083. display: inline-block;
  1084. line-height: 50px;
  1085. padding: 0 10px;
  1086. }
  1087. .servicemain .serviceOne .left .leftTop a {
  1088. float: right;
  1089. height: 50px;
  1090. line-height: 50px;
  1091. padding: 0 15px;
  1092. font-size: 16px;
  1093. color: #337ab7;
  1094. }
  1095. .servicemain .serviceOne .left .list ul li {
  1096. float: left;
  1097. width: 96%;
  1098. padding: 10px;
  1099. border-bottom: 1px solid #ccc;
  1100. }
  1101. .servicemain .serviceOne .left .list ul li:hover {
  1102. cursor: pointer;
  1103. }
  1104. .servicemain .serviceOne .left .list ul li:hover .info p:first-child {
  1105. color: #00A4FF;
  1106. }
  1107. .servicemain .serviceOne .left .list ul li .image {
  1108. float: left;
  1109. width: 100px;
  1110. height: 100px;
  1111. }
  1112. .servicemain .serviceOne .left .list ul li .image img {
  1113. border-radius: 90px;
  1114. }
  1115. .servicemain .serviceOne .left .list ul li .info {
  1116. float: left;
  1117. width: 78%;
  1118. padding: 0 0 0 15px;
  1119. }
  1120. .servicemain .serviceOne .left .list ul li .info p:first-child {
  1121. font-size: 18px;
  1122. font-weight: bold;
  1123. }
  1124. .servicemain .serviceOne .left .list ul li .info p:last-child {
  1125. font-size: 14px;
  1126. color: #666666;
  1127. padding: 10px 0 0 0;
  1128. overflow: hidden;
  1129. text-overflow: ellipsis;
  1130. -webkit-line-clamp: 3;
  1131. word-break: break-all;
  1132. display: -webkit-box;
  1133. -webkit-box-orient: vertical;
  1134. }
  1135. .servicemain .serviceOne .right {
  1136. float: left;
  1137. width: 608px;
  1138. height: 535px;
  1139. box-shadow: 0 0 5px #0085d2;
  1140. background: #fff;
  1141. border-radius: 5px;
  1142. margin: 0;
  1143. overflow: hidden;
  1144. }
  1145. .servicemain .serviceOne .right .rightTop {
  1146. border-bottom: 1px dashed #ccc;
  1147. margin: 0 20px;
  1148. }
  1149. .servicemain .serviceOne .right .rightTop span {
  1150. font-size: 18px;
  1151. height: 50px;
  1152. display: inline-block;
  1153. line-height: 50px;
  1154. padding: 0 10px;
  1155. }
  1156. .servicemain .serviceOne .right .rightTop a {
  1157. float: right;
  1158. height: 50px;
  1159. line-height: 50px;
  1160. padding: 0 15px;
  1161. font-size: 16px;
  1162. color: #337ab7;
  1163. }
  1164. .servicemain .serviceOne .right .list ul li {
  1165. float: left;
  1166. width: 280px;
  1167. margin: 15px 10px 0px 10px;
  1168. text-align: center;
  1169. height: 220px;
  1170. border: 1px solid #ccc;
  1171. position: relative;
  1172. }
  1173. .servicemain .serviceOne .right .list ul li:hover {
  1174. cursor: pointer;
  1175. }
  1176. .servicemain .serviceOne .right .list ul li:hover p {
  1177. color: #005293;
  1178. font-weight: bold;
  1179. }
  1180. .servicemain .serviceOne .right img {
  1181. width: 280px;
  1182. height: 220px;
  1183. }
  1184. .servicemain .serviceOne .right p {
  1185. position: absolute;
  1186. bottom: 0;
  1187. height: 30px;
  1188. line-height: 30px;
  1189. padding: 0 5px;
  1190. width: 97%;
  1191. text-align: left;
  1192. background: #76bdfe5f;
  1193. font-size: 16px;
  1194. }
  1195. .servicemain .serviceTwo {
  1196. float: left;
  1197. width: 100%;
  1198. height: 500px;
  1199. margin: 0 0 20px 0;
  1200. box-shadow: 0 0 5px #0085d2;
  1201. background: #fff;
  1202. }
  1203. .servicemain .serviceTwo .serviceTop {
  1204. border-bottom: 1px dashed #ccc;
  1205. margin: 0 20px 20px 20px;
  1206. }
  1207. .servicemain .serviceTwo .serviceTop span {
  1208. font-size: 18px;
  1209. height: 50px;
  1210. display: inline-block;
  1211. line-height: 50px;
  1212. padding: 0 10px;
  1213. }
  1214. .servicemain .serviceTwo .serviceTop a {
  1215. float: right;
  1216. height: 50px;
  1217. line-height: 50px;
  1218. padding: 0 15px;
  1219. font-size: 16px;
  1220. color: #337ab7;
  1221. }
  1222. .servicemain .serviceTwo .list {
  1223. float: left;
  1224. padding: 0 20px;
  1225. }
  1226. .servicemain .serviceTwo .list ul li {
  1227. float: left;
  1228. width: 570px;
  1229. border: 1px dashed #ccc;
  1230. margin: 0 15px 20px 0;
  1231. padding: 15px 0px;
  1232. }
  1233. .servicemain .serviceTwo .list ul li:hover {
  1234. cursor: pointer;
  1235. border: 1px dashed transparent;
  1236. box-shadow: 0 0 5px red;
  1237. }
  1238. .servicemain .serviceTwo .list ul li p:first-child {
  1239. padding: 0 10px 5px 10px;
  1240. }
  1241. .servicemain .serviceTwo .list ul li p:first-child span:first-child {
  1242. display: inline-block;
  1243. width: 69%;
  1244. font-size: 18px;
  1245. }
  1246. .servicemain .serviceTwo .list ul li p:first-child span:last-child {
  1247. font-size: 14px;
  1248. color: #666;
  1249. display: inline-block;
  1250. width: 30%;
  1251. text-align: right;
  1252. }
  1253. .servicemain .serviceTwo .list ul li p:nth-child(2n) {
  1254. padding: 5px 10px;
  1255. font-size: 16px;
  1256. }
  1257. .servicemain .serviceTwo .list ul li p:last-child {
  1258. padding: 0 10px;
  1259. font-size: 16px;
  1260. color: #666;
  1261. overflow: hidden;
  1262. text-overflow: ellipsis;
  1263. -webkit-line-clamp: 4;
  1264. word-break: break-all;
  1265. display: -webkit-box;
  1266. -webkit-box-orient: vertical;
  1267. line-height: 25px;
  1268. }
  1269. .servicemain .serviceTwo .list ul li:nth-child(2n) {
  1270. margin: 0;
  1271. }
  1272. /* 创新服务主体结束 */
  1273. /* 创新服务结束 */
  1274. /* 动态监测开始 */
  1275. /* 动态监测top+down取于科技超市,无需改动 */
  1276. /* 动态监测主体开始 */
  1277. .dynamicmain {
  1278. height: 300px;
  1279. }
  1280. .dynamicinfo1 {
  1281. box-shadow: 0 0 10px #2d64b3;
  1282. border-radius: 10px;
  1283. margin: 10px 20px 0 0;
  1284. width: 565px;
  1285. float: left;
  1286. height: 448px;
  1287. overflow: hidden;
  1288. background: #fff;
  1289. }
  1290. .dynamicinfo2 {
  1291. box-shadow: 0 0 10px #2d64b3;
  1292. border-radius: 10px;
  1293. margin: 10px 0 20px 0;
  1294. width: 615px;
  1295. float: left;
  1296. height: 448px;
  1297. overflow: hidden;
  1298. background: #fff;
  1299. }
  1300. .dynamicmaintitle {
  1301. font-size: 18px;
  1302. color: #22529a;
  1303. padding: 20px 20px 0 20px;
  1304. }
  1305. .dynamicmore {
  1306. float: right;
  1307. }
  1308. .dynamictables {
  1309. padding: 0 10px;
  1310. float: left;
  1311. height: 394px;
  1312. overflow: hidden;
  1313. }
  1314. .dynamictable {
  1315. margin: -10px 0 0 0;
  1316. }
  1317. .dynamictable td,
  1318. th {
  1319. border: 1px solid #cad9ea;
  1320. color: #666;
  1321. height: 34px;
  1322. text-align: center;
  1323. width: 134px;
  1324. }
  1325. .dynamictable tr:hover td {
  1326. background-color: #005293;
  1327. color: #ffffff;
  1328. }
  1329. .dynamictable2 tr:hover td {
  1330. background-color: #005293;
  1331. color: #ffffff;
  1332. }
  1333. .dynamictable3 tr:hover td {
  1334. background-color: #005293;
  1335. color: #ffffff;
  1336. }
  1337. .dynamictable thead th {
  1338. background-color: #CCE8EB;
  1339. width: 100px;
  1340. }
  1341. .dynamictable tr:nth-child(odd) {
  1342. background: #fff;
  1343. }
  1344. .dynamictable tr:nth-child(even) {
  1345. background: #F5FAFA;
  1346. }
  1347. .dynamictable2 {
  1348. margin: -10px 0 0 0;
  1349. }
  1350. .dynamictable2 td,
  1351. th {
  1352. border: 1px solid #cad9ea;
  1353. color: #666;
  1354. height: 34px;
  1355. text-align: center;
  1356. width: 147px;
  1357. }
  1358. .dynamictable2 thead th {
  1359. background-color: #CCE8EB;
  1360. width: 100px;
  1361. }
  1362. .dynamictable2 tr:nth-child(odd) {
  1363. background: #fff;
  1364. }
  1365. .dynamictable2 tr:nth-child(even) {
  1366. background: #F5FAFA;
  1367. }
  1368. .dynamictables3 {
  1369. padding: 0 10px;
  1370. float: left;
  1371. height: 405px;
  1372. overflow: hidden;
  1373. width: 1180px;
  1374. }
  1375. .dynamictable3 {
  1376. margin: -10px 0 0 0;
  1377. }
  1378. .dynamictable3 td,
  1379. th {
  1380. border: 1px solid #cad9ea;
  1381. color: #666;
  1382. height: 34px;
  1383. text-align: center;
  1384. width: 293px;
  1385. }
  1386. .dynamictable3 thead th {
  1387. background-color: #CCE8EB;
  1388. width: 100px;
  1389. }
  1390. .dynamictable3 tr:nth-child(odd) {
  1391. background: #fff;
  1392. }
  1393. .dynamictable3 tr:nth-child(even) {
  1394. background: #F5FAFA;
  1395. }
  1396. .dynamicinfo3 {
  1397. box-shadow: 0 0 10px #2d64b3;
  1398. border-radius: 10px;
  1399. margin: 10px 0 10px 0;
  1400. height: 465px;
  1401. float: left;
  1402. overflow: hidden;
  1403. width: 1200px;
  1404. background: #fff;
  1405. }
  1406. /* 动态监测主体结束 */
  1407. /* 动态监测结束 */
  1408. /* 技术培训开始 */
  1409. /* 技术培训top+down取于科技超市,无需改动 */
  1410. /* 技术培训主体开始 */
  1411. .technicalmain {
  1412. background-color: #F5F5F54f;
  1413. }
  1414. .technicalmain .technical_left {
  1415. float: left;
  1416. width: 590px;
  1417. height: 760px;
  1418. margin: 10px 0 20px 0;
  1419. background-color: #FFFFFF;
  1420. box-shadow: 0 0 5px #005293;
  1421. border-radius: 5px;
  1422. overflow: hidden;
  1423. }
  1424. .technicalmain .technical_left_title {
  1425. font-size: 18px;
  1426. line-height: 40px;
  1427. color: #005293;
  1428. margin: 0 10px;
  1429. border-bottom: 1px dashed #ccc;
  1430. }
  1431. .technicalmain .technical_left_title .more {
  1432. float: right;
  1433. margin: 0 10px;
  1434. }
  1435. .technicalmain .train li {
  1436. border-bottom: 1px solid #929292;
  1437. margin: 0 10px;
  1438. padding: 15px 0;
  1439. float: left;
  1440. }
  1441. .technicalmain .train li:hover {
  1442. cursor: pointer;
  1443. }
  1444. .technicalmain .train li:hover p:nth-child(2) {
  1445. font-weight: bold;
  1446. color: #005293;
  1447. }
  1448. .technicalmain .train li:last-child {
  1449. border-bottom: none;
  1450. }
  1451. .technicalmain .train li p:first-child {
  1452. font-size: 18px;
  1453. color: #FFFFFF;
  1454. background-color: #005293;
  1455. text-align: center;
  1456. float: left;
  1457. padding: 0 5px;
  1458. }
  1459. .technicalmain .train li p:nth-child(2) {
  1460. font-size: 18px;
  1461. margin: 10px;
  1462. float: left;
  1463. overflow: hidden;
  1464. text-overflow: ellipsis;
  1465. white-space: nowrap;
  1466. padding: 0 0 0 15px;
  1467. width: 78%;
  1468. }
  1469. .technicalmain .train li p:last-child {
  1470. font-size: 15px;
  1471. color: #929292;
  1472. padding: 5px 0 0 125px;
  1473. margin: 5px;
  1474. float: left;
  1475. overflow: hidden;
  1476. text-overflow: ellipsis;
  1477. -webkit-line-clamp: 3;
  1478. word-break: break-all;
  1479. display: -webkit-box;
  1480. -webkit-box-orient: vertical;
  1481. }
  1482. .technical_right {
  1483. float: right;
  1484. width: 590px;
  1485. height: 760px;
  1486. margin: 10px 0 20px 0;
  1487. background-color: #FFFFFF;
  1488. box-shadow: 0 0 5px #005293;
  1489. border-radius: 5px;
  1490. overflow: hidden;
  1491. }
  1492. .technicalmain .technical_right_title {
  1493. font-size: 18px;
  1494. line-height: 40px;
  1495. color: #005293;
  1496. margin: 0 10px;
  1497. border-bottom: 1px dashed #ccc;
  1498. }
  1499. .technicalmain .technical_right_title .more {
  1500. float: right;
  1501. margin: 0 10px;
  1502. }
  1503. .technical_right .guide li {
  1504. float: left;
  1505. margin: 0 10px;
  1506. width: 97%;
  1507. padding: 5px 0;
  1508. }
  1509. .technical_right .guide li:hover {
  1510. cursor: pointer;
  1511. }
  1512. .technical_right .guide li:hover span:first-child {
  1513. color: #005293;
  1514. font-weight: bold;
  1515. }
  1516. .technical_right .guide li:hover span:last-child {
  1517. color: #005293;
  1518. font-weight: bold;
  1519. }
  1520. .technical_right .guide li:nth-child(7) {
  1521. border-bottom: 1px dashed #0085D2;
  1522. padding: 0 0 15px 0;
  1523. }
  1524. .technical_right .guide li:nth-child(8) {
  1525. padding: 15px 0 0 0;
  1526. }
  1527. .technical_right .guide li span:first-child {
  1528. line-height: 40px;
  1529. font-size: 18px;
  1530. width: 400px;
  1531. margin: 0 10px;
  1532. float: left;
  1533. overflow: hidden;
  1534. text-overflow: ellipsis;
  1535. white-space: nowrap;
  1536. }
  1537. .technical_right .guide li span:last-child {
  1538. line-height: 40px;
  1539. font-size: 15px;
  1540. width: 100px;
  1541. float: right;
  1542. color: #929292;
  1543. }
  1544. /* 技术培训主体结束 */
  1545. /* 技术培训结束 */
  1546. /* 无图片列表开始 */
  1547. .newlistmain {
  1548. height: 600px;
  1549. margin: 10px 0 20px 0;
  1550. box-shadow: 0 0 10px #2d64b3;
  1551. border-radius: 10px;
  1552. background: #fff;
  1553. }
  1554. .newlistmain .newlistTop {
  1555. height: 40px;
  1556. line-height: 40px;
  1557. margin: 15px 40px 20px 40px;
  1558. border-bottom: 1px solid #ccc;
  1559. font-size: 18px;
  1560. padding: 10px 0 0 0;
  1561. }
  1562. .newlistmain .newlistTopt {
  1563. width: 10px;
  1564. height: 10px;
  1565. background-color: #005293;
  1566. margin: 0 10px 0 0px;
  1567. }
  1568. .newlistmain .newlisttitle {
  1569. color: #005293;
  1570. }
  1571. .newlistmain .newlistcontext {
  1572. font-size: 16px;
  1573. /* height: 680px; */
  1574. padding: 0 40px 0 40px;
  1575. }
  1576. .newlistmain .newlistcontext ul li {
  1577. float: left;
  1578. width: 100%;
  1579. padding: 12px 0;
  1580. }
  1581. .newlistmain .newlistcontext ul li:hover {
  1582. color: #005293;
  1583. font-weight: bold;
  1584. }
  1585. .newlistmain .newlistcontext ul li p {
  1586. float: left;
  1587. width: 995px;
  1588. font-size: 16px;
  1589. overflow: hidden;
  1590. text-overflow: ellipsis;
  1591. white-space: nowrap;
  1592. padding: 0 30px 0 0;
  1593. }
  1594. .newlistmain .newlistcontext ul li span {
  1595. font-size: 16px;
  1596. width: 120px;
  1597. }
  1598. .newlistmain .newlistpage {
  1599. float: left;
  1600. width: 100%;
  1601. text-align: center;
  1602. height: 40px;
  1603. line-height: 40px;
  1604. margin: 15px 0;
  1605. }
  1606. /* 无图片列表top+down取于科技超市,无需改动 */
  1607. /* 无图片列表结束 */
  1608. /* 图片列表开始 */
  1609. .newimagelistmain {
  1610. height: 1440px;
  1611. margin: 15px 0 20px 0;
  1612. box-shadow: 0 0 10px #2d64b3;
  1613. border-radius: 10px;
  1614. }
  1615. .newimagelistmain .newimagelistTop {
  1616. height: 40px;
  1617. line-height: 40px;
  1618. margin: 0 40px 20px 40px;
  1619. border-bottom: 1px solid #ccc;
  1620. font-size: 18px;
  1621. padding: 10px 0 0 0;
  1622. }
  1623. .newimagelistmain .newimagelistTopt {
  1624. width: 10px;
  1625. height: 10px;
  1626. background-color: #005293;
  1627. margin: 0 10px 0 0px;
  1628. }
  1629. .newimagelistmain .newimagelisttitle {
  1630. color: #005293;
  1631. }
  1632. .newimagelistmain .newimagelistcontext {
  1633. font-size: 16px;
  1634. padding: 0 40px 0 40px;
  1635. height: 1250px;
  1636. }
  1637. .nweimagelistleft {
  1638. width: 150px;
  1639. height: 95px;
  1640. float: left;
  1641. padding: 0 20px 0 0;
  1642. }
  1643. .nweimagelistunders {
  1644. float: left;
  1645. height: 95px;
  1646. width: 950px;
  1647. }
  1648. .nweimagelistunder {
  1649. width: 800px;
  1650. overflow: hidden;
  1651. text-overflow: ellipsis;
  1652. white-space: nowrap;
  1653. float: left;
  1654. padding: 5px 0 0 0;
  1655. }
  1656. .nweimagelistright {
  1657. width: 150px;
  1658. float: left;
  1659. text-align: right;
  1660. padding: 5px 0 0 0;
  1661. }
  1662. .newimagelistspanimg {
  1663. height: 95px;
  1664. width: 150px;
  1665. text-align: right;
  1666. }
  1667. .nweimagelistcontext {
  1668. float: left;
  1669. overflow: hidden;
  1670. text-overflow: ellipsis;
  1671. -webkit-line-clamp: 2;
  1672. word-break: break-all;
  1673. display: -webkit-box;
  1674. -webkit-box-orient: vertical;
  1675. padding: 15px 0 3px 0;
  1676. color: #666;
  1677. /*显示行数*/
  1678. }
  1679. .newimagelistcontext ul li {
  1680. height: 100px;
  1681. height: 100px;
  1682. padding: 12px 0;
  1683. border-bottom: 1px dashed #ccc;
  1684. }
  1685. .newimagelistcontext ul li .nweimagelistunder:hover {
  1686. color: #005293;
  1687. font-weight: bold;
  1688. }
  1689. .newimagelistmain .newimagelistpage {
  1690. width: 100%;
  1691. text-align: center;
  1692. height: 40px;
  1693. line-height: 40px;
  1694. padding: 40px 0;
  1695. text-align: center;
  1696. clear: both
  1697. }
  1698. /* 图片列表top+down取于科技超市,无需改动 */
  1699. /* 图片列表开始 */
  1700. /* 信息详情页开始 */
  1701. .detailmain {
  1702. margin: 15px 0 15px 0;
  1703. box-shadow: 0 0 10px #2d64b3;
  1704. border-radius: 10px;
  1705. min-height: 800px;
  1706. }
  1707. .detailtop {
  1708. padding: 20px 0px;
  1709. font-size: 18px;
  1710. line-height: 40px;
  1711. font-weight: normal;
  1712. text-align: left;
  1713. margin: 0;
  1714. text-align: center;
  1715. color: #005293;
  1716. }
  1717. .detailtopleft {
  1718. text-align: center;
  1719. padding: 0 0 10px 0;
  1720. border-bottom: 1px solid #ccc;
  1721. font-size: 16px;
  1722. color: #666666;
  1723. }
  1724. .detailimage {
  1725. text-align: center;
  1726. padding: 20px 0 0 0;
  1727. }
  1728. .detailimg {
  1729. width: 500px;
  1730. height: 300px;
  1731. }
  1732. .detailcontext {
  1733. padding: 20px 40px 60px 40px;
  1734. }
  1735. /* 信息详情top+down取于科技超市,无需改动 */
  1736. /* 信息详情页结束 */
  1737. /* 直播大厅跳转前页面 */
  1738. .liveIndex .info {
  1739. /* background-image: url(../images/beijing.jpg); */
  1740. float: left;
  1741. width: 400px;
  1742. height: 100vh;
  1743. background: red;
  1744. position: fixed;
  1745. left: 38%;
  1746. top: 0;
  1747. box-shadow: 0 0 15px #4b0502;
  1748. }
  1749. .liveIndex .info .infoTwo {
  1750. float: left;
  1751. width: 500px;
  1752. background: red;
  1753. height: 500px;
  1754. position: absolute;
  1755. top: 180px;
  1756. border-radius: 360px;
  1757. left: -50px;
  1758. box-shadow: 0 0 30px #4e0000;
  1759. border: 6px solid #a30d0c5f;
  1760. }
  1761. .liveIndex .info .infoThree {
  1762. float: left;
  1763. width: 600px;
  1764. top: 50px;
  1765. position: relative;
  1766. left: -50px;
  1767. }
  1768. .liveIndex .info .infoThree img {
  1769. width: 70px;
  1770. height: 65px;
  1771. margin: 0 0 10px 0;
  1772. }
  1773. .liveIndex .info .infoThree p {
  1774. font-size: 25px;
  1775. color: #fffa93;
  1776. padding: 0 0 10px 0;
  1777. }
  1778. .liveIndex .info .infoThree .title {
  1779. font-size: 40px;
  1780. color: #fffa93;
  1781. font-weight: bold;
  1782. font-family: monospace;
  1783. padding: 0 0 20px 0;
  1784. }
  1785. .liveIndex .info .infoThree a {
  1786. width: 209px;
  1787. height: 50px;
  1788. background: linear-gradient(to bottom, #ffbd00 0%, #fd5a00 100%);
  1789. border-radius: 30px;
  1790. font-size: 22px;
  1791. color: #fff;
  1792. font-family: 楷体;
  1793. margin: 30px 0 0 0;
  1794. font-weight: bold;
  1795. float: left;
  1796. line-height: 50px;
  1797. position: relative;
  1798. left: 195px;
  1799. }
  1800. .liveIndex .info .infoThree i {
  1801. position: relative;
  1802. left: 10px;
  1803. top: -2px;
  1804. }
  1805. .home {
  1806. float: left;
  1807. width: 100%;
  1808. position: relative;
  1809. z-index: 999;
  1810. }
  1811. .home .homeTop .homeTopInfo {
  1812. height: 40px;
  1813. line-height: 40px;
  1814. color: #fff;
  1815. font-size: 18px;
  1816. }
  1817. .home .homeTop .homeTopInfo button {
  1818. color: #fff;
  1819. font-size: 18px;
  1820. }
  1821. .home .homeTop .homeTopLogo {
  1822. padding: 80px 0;
  1823. }
  1824. .home .homeTop .homeTopLogo img {
  1825. width: 80px;
  1826. height: 70px;
  1827. }
  1828. .home .homeTop .homeTopLogo span {
  1829. font-size: 45px;
  1830. color: #fff;
  1831. font-family: cursive;
  1832. position: relative;
  1833. top: 15px;
  1834. left: 15px;
  1835. }
  1836. .home .homeMain {
  1837. float: left;
  1838. width: 100%;
  1839. height: 500px;
  1840. }
  1841. .home .homeMain .live {
  1842. left: 50%;
  1843. top: -11%;
  1844. }
  1845. .home .homeMain .super {
  1846. top: 41%;
  1847. left: 22%;
  1848. }
  1849. .home .homeMain .service {
  1850. top: 96%;
  1851. left: 0%;
  1852. }
  1853. .home .homeMain .dynamic {
  1854. top: 60%;
  1855. left: 68%;
  1856. }
  1857. .home .homeMain .technocal {
  1858. top: 104%;
  1859. left: 97%;
  1860. }
  1861. .home .homeMain nav ul li i {
  1862. font-size: 50px;
  1863. color: #fff;
  1864. margin: 35px 0 15px 0;
  1865. float: left;
  1866. width: 100%;
  1867. }
  1868. .home .homeMain nav ul li p {
  1869. font-size: 20px;
  1870. color: #fff;
  1871. font-weight: bold;
  1872. }
  1873. .home .homeDown{
  1874. float: left;
  1875. width: 100%;
  1876. font-size: 16px;
  1877. color: #fff;
  1878. padding: 20px 0 0 0;
  1879. }
  1880. .home .homeDown p{
  1881. padding: 10px 0 0 120px;
  1882. }