酷炫数据营销平台

home.css 20KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019
  1. header {
  2. width: 100%;
  3. height: 60px;
  4. position: relative;
  5. background: #202020;
  6. position: fixed;
  7. top: 0;
  8. z-index: 1000;
  9. min-width: 1200px;
  10. }
  11. header .left {
  12. float: left;
  13. width: 230px;
  14. height: 100%;
  15. background: #202020;
  16. position: relative;
  17. margin-left: 24px;
  18. }
  19. header .left .ku {
  20. width: 110px;
  21. cursor: pointer;
  22. display: inline-block;
  23. vertical-align: middle;
  24. }
  25. header .search_input {
  26. position: relative;
  27. height: 100%;
  28. width: 110px;
  29. display: inline-block;
  30. vertical-align: middle;
  31. }
  32. header .search_input .clearText {
  33. position: absolute;
  34. top: 50%;
  35. -webkit-transform: translateY(-50%);
  36. transform: translateY(-50%);
  37. right: 80px;
  38. color: #666;
  39. cursor: pointer;
  40. }
  41. header .search_input .search_img {
  42. height: 100%;
  43. color: #fff;
  44. line-height: 60px;
  45. margin-left: 20px;
  46. }
  47. header .search_input .search_img .platform_name {
  48. color: #ffffff;
  49. cursor: pointer;
  50. font-size: 14px;
  51. }
  52. header .search_input .search_img .selectBox {
  53. padding: 6px 0;
  54. background: #fff;
  55. position: absolute;
  56. top: 60px;
  57. left: 0;
  58. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.2);
  59. border-radius: 4px;
  60. display: none;
  61. }
  62. header .search_input .search_img .selectBox::before {
  63. content: "";
  64. position: absolute;
  65. top: -17px;
  66. left: 50%;
  67. -webkit-transform: translateX(-50%);
  68. transform: translateX(-50%);
  69. width: 0;
  70. height: 0;
  71. border: 10px solid;
  72. border-color: transparent;
  73. border-bottom-color: #fff;
  74. }
  75. header .search_input .search_img .selectBox li {
  76. font-size: 14px;
  77. padding: 0 20px;
  78. position: relative;
  79. white-space: nowrap;
  80. overflow: hidden;
  81. text-overflow: ellipsis;
  82. color: #606266;
  83. height: 34px;
  84. line-height: 34px;
  85. -webkit-box-sizing: border-box;
  86. box-sizing: border-box;
  87. cursor: pointer;
  88. }
  89. header .search_input .search_img .selectBox li a {
  90. color: #606266;
  91. }
  92. header .search_input .search_img .selectBox li:hover {
  93. background: #f5f7fa;
  94. }
  95. header .search_input .search_img .selectBox li img {
  96. width: 20px;
  97. height: 20px;
  98. margin-right: 5px;
  99. }
  100. header .search_input .search_img .el-icon-caret-bottom {
  101. background: transparent;
  102. transition: transform .3s;
  103. }
  104. header .search_input .search_img:hover .selectBox {
  105. display: inline-block;
  106. }
  107. header .search_input .search_img:hover .el-icon-caret-bottom {
  108. transform: rotate(180deg);
  109. }
  110. header .search_input .search_img .imgDiv {
  111. display: inline-block;
  112. margin-right: 10px;
  113. cursor: pointer;
  114. }
  115. header .search_input .search_img .imgDiv.active::after {
  116. content: "";
  117. display: block;
  118. height: 2px;
  119. width: 23px;
  120. border-radius: 2px;
  121. margin: auto;
  122. margin-top: 5px;
  123. background: #2662FF;
  124. }
  125. header .search_input .search_img .line {
  126. width: 2px;
  127. height: 27px;
  128. background: #2662FF;
  129. display: inline-block;
  130. margin: 0 6px;
  131. vertical-align: middle;
  132. }
  133. header .search_input .search_img img {
  134. width: 17px;
  135. display: inline-block;
  136. vertical-align: middle;
  137. background: #fff;
  138. border-radius: 4px;
  139. }
  140. header .search_input input {
  141. height: 100%;
  142. width: calc(100% - 150px);
  143. padding-left: 80px;
  144. border: none;
  145. font-size: 14px;
  146. }
  147. header .search_input button {
  148. color: #2662FF;
  149. font-size: 14px;
  150. border: none;
  151. height: 100%;
  152. width: 80px;
  153. float: right;
  154. }
  155. header .type {
  156. width: calc(100% - 250px);
  157. float: left;
  158. font-size: 16px;
  159. text-align: left;
  160. }
  161. header .type .oneLevel {
  162. display: inline-block;
  163. line-height: 60px;
  164. color: #fff;
  165. padding: 0 16px;
  166. cursor: pointer;
  167. position: relative;
  168. text-align: center;
  169. }
  170. header .type .type-active {
  171. color: #2662FF;
  172. }
  173. header .type .type-active::after {
  174. content: '';
  175. display: block;
  176. width: 20%;
  177. height: 2px;
  178. background: #2662FF;
  179. position: absolute;
  180. top: 48px;
  181. left: 0;
  182. right: 0;
  183. margin: auto;
  184. }
  185. header .right {
  186. float: right;
  187. width: calc(100% - 255px);
  188. padding-left: 20px;
  189. text-align: right;
  190. position: relative;
  191. box-sizing: border-box;
  192. user-select: none;
  193. }
  194. header .right .name {
  195. color: #ffffff;
  196. font-size: 15px;
  197. float: right;
  198. height: 60px;
  199. display: flex;
  200. align-items: center;
  201. margin-right: 10px;
  202. cursor: pointer;
  203. position: relative;
  204. z-index: 9;
  205. }
  206. header .right .name .userName {
  207. display: inline-block;
  208. max-width: 90px;
  209. padding-right: 5px;
  210. overflow: hidden;
  211. text-overflow: ellipsis;
  212. white-space: nowrap;
  213. text-align: center;
  214. }
  215. header .right .name #login-el-icon-arrow-down {
  216. display: none;
  217. }
  218. header .right .name img {
  219. width: 24px;
  220. vertical-align: sub;
  221. display: inline-block;
  222. margin-right: 10px;
  223. }
  224. header .right .name .status i {
  225. margin-right: 7px;
  226. font-size: 18px;
  227. vertical-align: middle;
  228. }
  229. header .right .center {
  230. width: 25%;
  231. height: 35px;
  232. background: #fff;
  233. float: left;
  234. right: 170px;
  235. position: absolute;
  236. top: 0;
  237. bottom: 0;
  238. margin: auto;
  239. text-align: left;
  240. background: rgba(255, 255, 255, 0.136);
  241. }
  242. header .right .center .select {
  243. display: inline-block;
  244. width: 78px;
  245. line-height: 23px;
  246. text-align: center;
  247. height: 100%;
  248. padding: 6px 0 6px 4px;
  249. color: #fff;
  250. font-size: 15px;
  251. vertical-align: middle;
  252. cursor: pointer;
  253. position: relative;
  254. }
  255. header .right .center .select i {
  256. margin-left: 3px;
  257. }
  258. header .right .center .active {
  259. color: #2662FF;
  260. }
  261. header .right .center input {
  262. width: 80%;
  263. font-size: 12px;
  264. outline: none;
  265. border: none;
  266. padding-left: 21px;
  267. height: 100%;
  268. background: transparent;
  269. color: #fff;
  270. }
  271. header .right .center button {
  272. width: 76px;
  273. height: 100%;
  274. border: none;
  275. position: absolute;
  276. right: 0;
  277. top: 0;
  278. background: #595959;
  279. }
  280. header .right .center button .goole {
  281. width: 16px;
  282. height: 16px;
  283. position: absolute;
  284. top: 50%;
  285. left: 50%;
  286. transform: translate(-50%, -50%);
  287. }
  288. header .worker {
  289. height: 60px;
  290. line-height: 60px;
  291. color: #fff;
  292. margin-right: 20px;
  293. }
  294. header .worker img {
  295. width: 20px !important;
  296. height: 20px !important;
  297. vertical-align: middle !important;
  298. }
  299. header .active {
  300. color: #2662FF;
  301. }
  302. header .login_info {
  303. float: right;
  304. }
  305. header .login_info button {
  306. width: 76px;
  307. height: 35px;
  308. background: #2662FF;
  309. color: #fff;
  310. border: none;
  311. font-size: 15px;
  312. line-height: 35px;
  313. margin-right: 20px;
  314. margin-top: 12.5px;
  315. border-radius: 2px;
  316. }
  317. header .downIconActive {
  318. transform: rotate(180deg);
  319. }
  320. #homeCantiner {
  321. margin-top: 60px;
  322. }
  323. #homeCantiner #home_banner {
  324. width: 100%;
  325. min-width: 1170px;
  326. position: relative;
  327. }
  328. #homeCantiner #home_banner .homeBanner {
  329. width: 100%;
  330. }
  331. #homeCantiner #home_banner .el-carousel--horizontal {
  332. overflow-y: hidden;
  333. height: 100%;
  334. }
  335. #homeCantiner #home_banner .el-carousel--horizontal .el-carousel__container {
  336. height: 100%;
  337. }
  338. #homeCantiner #home_banner .homeContent {
  339. position: absolute;
  340. top: 0;
  341. left: 0;
  342. width: 100%;
  343. height: 100%;
  344. text-align: center;
  345. }
  346. #homeCantiner #home_banner .homeContent h2 {
  347. font-size: 50px;
  348. line-height: 70px;
  349. color: #ffffff;
  350. margin-top: 43px;
  351. }
  352. #homeCantiner #home_banner .homeContent .title_hint {
  353. color: #FFFFFF;
  354. font-size: 26px;
  355. line-height: 37px;
  356. margin-top: 37px;
  357. }
  358. #homeCantiner #home_banner .homeContent .search_div {
  359. margin-top: 50px;
  360. }
  361. #homeCantiner #home_banner .homeContent .search_div .search_type {
  362. display: inline-block;
  363. width: 900px;
  364. margin: auto;
  365. }
  366. #homeCantiner #home_banner .homeContent .search_div .search_type li {
  367. display: inline-block;
  368. color: #ffffff;
  369. font-size: 14px;
  370. height: 30px;
  371. line-height: 30px;
  372. width: 90px;
  373. position: relative;
  374. cursor: pointer;
  375. }
  376. #homeCantiner #home_banner .homeContent .search_div .search_type li.active {
  377. background: #fff;
  378. color: #0174F0;
  379. border-radius: 4px;
  380. }
  381. #homeCantiner #home_banner .homeContent .search_div .search_type li.active::after {
  382. content: "";
  383. position: absolute;
  384. bottom: -17px;
  385. left: 50%;
  386. transform: translateX(-50%);
  387. width: 0;
  388. height: 0;
  389. border: 10px solid;
  390. border-color: #ffffff transparent transparent transparent;
  391. }
  392. #homeCantiner #home_banner .homeContent .search_div .search_item {
  393. width: 962px;
  394. height: 56px;
  395. border-radius: 4px;
  396. background: #fff;
  397. margin: auto;
  398. margin-top: 20px;
  399. }
  400. #homeCantiner #home_banner .homeContent .search_div .search_item .search_icon {
  401. width: 26px;
  402. height: 26px;
  403. float: right;
  404. margin-top: 15px;
  405. margin-right: 23px;
  406. cursor: pointer;
  407. }
  408. #homeCantiner #home_banner .homeContent .search_div .search_input {
  409. position: relative;
  410. height: 100%;
  411. }
  412. #homeCantiner #home_banner .homeContent .search_div .search_input .clearText {
  413. position: absolute;
  414. top: 50%;
  415. -webkit-transform: translateY(-50%);
  416. transform: translateY(-50%);
  417. right: 80px;
  418. color: #666;
  419. cursor: pointer;
  420. }
  421. #homeCantiner #home_banner .homeContent .search_div .search_input .search_img {
  422. height: 100%;
  423. position: absolute;
  424. top: 50%;
  425. margin-top: -10px;
  426. left: 15px;
  427. }
  428. #homeCantiner #home_banner .homeContent .search_div .search_input .search_img img {
  429. width: 22px;
  430. height: 22px;
  431. display: inline-block;
  432. vertical-align: middle;
  433. }
  434. #homeCantiner #home_banner .homeContent .search_div .search_input input {
  435. height: 100%;
  436. width: calc(100% - 150px);
  437. padding-left: 15px;
  438. border: none;
  439. font-size: 14px;
  440. }
  441. #homeCantiner .rankBigBox .bigTitle {
  442. color: #222222;
  443. font-size: 26px;
  444. line-height: 37px;
  445. font-weight: 500;
  446. text-align: center;
  447. margin-top: 60px;
  448. }
  449. #homeCantiner .rankBigBox .rankTime {
  450. color: #999999;
  451. font-size: 16px;
  452. line-height: 22px;
  453. margin-top: 14px;
  454. text-align: center;
  455. height: 22px;
  456. }
  457. #homeCantiner .rankBigBox .liveBoardBox, #homeCantiner .rankBigBox .rankBox, #homeCantiner .rankBigBox .moreFunction {
  458. width: 962px;
  459. margin: auto;
  460. }
  461. #homeCantiner .rankBigBox .rankBox .itemBox {
  462. width: 303px;
  463. height: 506px;
  464. background-color: #FFFFFF;
  465. box-shadow: 0 2px 13px 0 rgba(150, 175, 255, 0.2);
  466. padding: 30px;
  467. background-image: url("https://kx-bigdata.oss-cn-beijing.aliyuncs.com/newIcon/home/live.png");
  468. background-repeat: no-repeat;
  469. background-size: 36%;
  470. display: inline-block;
  471. vertical-align: middle;
  472. margin-right: 21px;
  473. margin-top: 21px;
  474. }
  475. #homeCantiner .rankBigBox .rankBox .itemBox:nth-of-type(3n + 3) {
  476. margin-right: 0;
  477. }
  478. #homeCantiner .rankBigBox .rankBox .itemBox .rankTitle .title {
  479. float: left;
  480. color: #111111;
  481. font-size: 14px;
  482. line-height: 25px;
  483. font-weight: 500;
  484. }
  485. #homeCantiner .rankBigBox .rankBox .itemBox .rankTitle .more {
  486. color: #2662FF;
  487. font-size: 14px;
  488. line-height: 25px;
  489. float: right;
  490. cursor: pointer;
  491. }
  492. #homeCantiner .rankBigBox .rankBox .itemBox .table_title .info1, #homeCantiner .rankBigBox .rankBox .itemBox .table_info .left {
  493. float: left;
  494. }
  495. #homeCantiner .rankBigBox .rankBox .itemBox .table_title .info2, #homeCantiner .rankBigBox .rankBox .itemBox .table_info .right {
  496. float: right;
  497. }
  498. #homeCantiner .rankBigBox .rankBox .itemBox .table_title {
  499. color: #666666;
  500. font-size: 12px;
  501. line-height: 17px;
  502. padding: 10px 0;
  503. }
  504. #homeCantiner .rankBigBox .rankBox .itemBox .table_info {
  505. padding: 10px 0;
  506. border-top: 1px solid #E9EFFF;
  507. display: block;
  508. cursor: pointer;
  509. }
  510. #homeCantiner .rankBigBox .rankBox .itemBox .table_info .left .imgBox {
  511. width: 42px;
  512. height: 60px;
  513. border-radius: 4px;
  514. background: url("https://kx-bigdata.oss-cn-beijing.aliyuncs.com/blur_bg.png") no-repeat;
  515. background-size: 100% 100%;
  516. position: relative;
  517. overflow: hidden;
  518. display: inline-block;
  519. vertical-align: middle;
  520. }
  521. #homeCantiner .rankBigBox .rankBox .itemBox .table_info .left .imgBox img {
  522. width: 100%;
  523. position: absolute;
  524. top: 0;
  525. bottom: 0;
  526. left: 0;
  527. right: 0;
  528. margin: auto;
  529. }
  530. #homeCantiner .rankBigBox .rankBox .itemBox .table_info .left .name {
  531. color: #111111;
  532. font-size: 12px;
  533. line-height: 17px;
  534. width: 100px;
  535. overflow: hidden;
  536. text-overflow: ellipsis;
  537. white-space: nowrap;
  538. display: inline-block;
  539. vertical-align: middle;
  540. margin-left: 10px;
  541. }
  542. #homeCantiner .rankBigBox .rankBox .itemBox .table_info .right {
  543. color: #666666;
  544. font-size: 12px;
  545. font-weight: bold;
  546. line-height: 60px;
  547. }
  548. #homeCantiner .rankBigBox .rankBox .itemBox_dr {
  549. background-image: url("https://kx-bigdata.oss-cn-beijing.aliyuncs.com/newIcon/home/dr.png");
  550. }
  551. #homeCantiner .rankBigBox .rankBox .itemBox_goods {
  552. background-image: url("https://kx-bigdata.oss-cn-beijing.aliyuncs.com/newIcon/home/goods.png");
  553. }
  554. #homeCantiner .rankBigBox .rankBox .itemBox_video {
  555. background-image: url("https://kx-bigdata.oss-cn-beijing.aliyuncs.com/newIcon/home/video.png");
  556. }
  557. #homeCantiner .rankBigBox .rankBox .itemBox_music {
  558. background-image: url("https://kx-bigdata.oss-cn-beijing.aliyuncs.com/newIcon/home/music.png");
  559. }
  560. #homeCantiner .rankBigBox .rankBox .itemBox_comment {
  561. background-image: url("https://kx-bigdata.oss-cn-beijing.aliyuncs.com/newIcon/home/huifu.png");
  562. }
  563. #homeCantiner .rankBigBox .liveBoard {
  564. width: 100%;
  565. height: 183px;
  566. background: url("https://kx-bigdata.oss-cn-beijing.aliyuncs.com/wxVideo/home_bg_1.png") no-repeat;
  567. background-size: 100%;
  568. margin-top: 106px;
  569. }
  570. #homeCantiner .rankBigBox .liveBoard .liveBoardBox {
  571. padding-top: 75px;
  572. }
  573. #homeCantiner .rankBigBox .liveBoard .liveBoardBox .self_selet_button {
  574. width: 118px;
  575. height: 56px;
  576. background: #2662FF;
  577. border-radius: 4px;
  578. color: #FFFFFF;
  579. font-size: 16px;
  580. border: none;
  581. float: right;
  582. }
  583. #homeCantiner .rankBigBox .liveBoard .liveBoardBox .self_select {
  584. width: 820px;
  585. float: left;
  586. position: relative;
  587. }
  588. #homeCantiner .rankBigBox .liveBoard .liveBoardBox .self_select .self_select_input {
  589. width: 100%;
  590. background-color: #fff;
  591. background-image: none;
  592. border-radius: 4px;
  593. border: 1px solid #dcdfe6;
  594. box-sizing: border-box;
  595. color: #333333;
  596. display: inline-block;
  597. font-size: inherit;
  598. height: 56px;
  599. line-height: 56px;
  600. outline: none;
  601. padding: 0 15px;
  602. transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  603. cursor: pointer;
  604. }
  605. #homeCantiner .rankBigBox .liveBoard .liveBoardBox .self_select .self_select_input .self_select_input_inner {
  606. width: 760px;
  607. height: 100%;
  608. border: none;
  609. background: transparent;
  610. margin-top: -5px;
  611. cursor: pointer;
  612. }
  613. #homeCantiner .rankBigBox .liveBoard .liveBoardBox .self_select .self_select_input .icon {
  614. width: 20px;
  615. display: inline-block;
  616. transition: transform .3s;
  617. }
  618. #homeCantiner .rankBigBox .liveBoard .liveBoardBox .self_select .self_popper {
  619. min-width: 240px;
  620. z-index: 2027;
  621. position: absolute;
  622. top: 70px;
  623. left: 0;
  624. margin-bottom: 12px;
  625. border: 1px solid #e4e7ed;
  626. border-radius: 4px;
  627. background-color: #fff;
  628. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  629. box-sizing: border-box;
  630. margin: 5px 0;
  631. transform: scaleY(0);
  632. transition: transform 0.2s;
  633. transform-origin: top center;
  634. }
  635. #homeCantiner .rankBigBox .liveBoard .liveBoardBox .self_select .self_popper .popper_arrow {
  636. top: -12px;
  637. left: 35px;
  638. margin-right: 3px;
  639. border-top-color: #fff;
  640. border-bottom-width: 0;
  641. border-width: 6px;
  642. filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.03));
  643. position: absolute;
  644. display: block;
  645. width: 0;
  646. height: 0;
  647. border-color: transparent;
  648. border-bottom-color: #fff;
  649. border-style: solid;
  650. }
  651. #homeCantiner .rankBigBox .liveBoard .liveBoardBox .self_select .self_popper .popper_arrow::after {
  652. content: " ";
  653. border-width: 6px;
  654. bottom: 1px;
  655. margin-left: -6px;
  656. border-top-color: #fff;
  657. border-bottom-width: 0;
  658. position: absolute;
  659. display: block;
  660. width: 0;
  661. height: 0;
  662. border-color: transparent;
  663. border-style: solid;
  664. }
  665. #homeCantiner .rankBigBox .liveBoard .liveBoardBox .self_select .self_popper .select_dropdown_list {
  666. list-style: none;
  667. padding: 6px 0;
  668. margin: 0;
  669. box-sizing: border-box;
  670. max-width: 820px;
  671. }
  672. #homeCantiner .rankBigBox .liveBoard .liveBoardBox .self_select .self_popper .select_dropdown_list .select_dropdown_item {
  673. font-size: 14px;
  674. padding: 0 20px;
  675. position: relative;
  676. white-space: nowrap;
  677. overflow: hidden;
  678. text-overflow: ellipsis;
  679. color: #606266;
  680. height: 34px;
  681. line-height: 34px;
  682. box-sizing: border-box;
  683. cursor: pointer;
  684. display: block;
  685. }
  686. #homeCantiner .rankBigBox .liveBoard .liveBoardBox .self_select .self_popper .select_dropdown_list .select_dropdown_item:hover {
  687. background-color: #f5f7fa;
  688. }
  689. #homeCantiner .rankBigBox .liveBoard .liveBoardBox .self_select .self_popper .select_dropdown_list .select_dropdown_item.selected {
  690. color: #409eff;
  691. font-weight: 700;
  692. }
  693. #homeCantiner .rankBigBox .hotVideoBox .hotVideo {
  694. width: 300px;
  695. height: 140px;
  696. background: #ffffff;
  697. border-radius: 6px;
  698. margin-right: 25px;
  699. margin-top: 50px;
  700. overflow: hidden;
  701. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.2);
  702. display: inline-block;
  703. }
  704. #homeCantiner .rankBigBox .hotVideoBox .hotVideo:nth-of-type(3n+3) {
  705. margin-right: 0;
  706. }
  707. #homeCantiner .rankBigBox .hotVideoBox .hotVideo .imgBox {
  708. display: inline-block;
  709. width: 140px;
  710. height: 140px;
  711. position: relative;
  712. overflow: hidden;
  713. vertical-align: middle;
  714. }
  715. #homeCantiner .rankBigBox .hotVideoBox .hotVideo .imgBox img {
  716. width: 100%;
  717. }
  718. #homeCantiner .rankBigBox .hotVideoBox .hotVideo .vidoe_info {
  719. display: inline-block;
  720. margin-left: 12px;
  721. vertical-align: middle;
  722. }
  723. #homeCantiner .rankBigBox .hotVideoBox .hotVideo .vidoe_info .video_name {
  724. color: #333333;
  725. font-size: 15px;
  726. line-height: 40px;
  727. font-weight: 600;
  728. width: 110px;
  729. overflow: hidden;
  730. text-overflow: ellipsis;
  731. white-space: nowrap;
  732. }
  733. #homeCantiner .rankBigBox .hotVideoBox .hotVideo .vidoe_info .video_user {
  734. width: 110px;
  735. overflow: hidden;
  736. text-overflow: ellipsis;
  737. white-space: nowrap;
  738. padding-bottom: 18px;
  739. border-bottom: 1px dotted #E8E8E8;
  740. margin-top: 5px;
  741. }
  742. #homeCantiner .rankBigBox .hotVideoBox .hotVideo .vidoe_info .video_user img {
  743. width: 20px;
  744. height: 20px;
  745. border-radius: 50%;
  746. display: inline-block;
  747. vertical-align: middle;
  748. }
  749. #homeCantiner .rankBigBox .hotVideoBox .hotVideo .vidoe_info .video_user span {
  750. vertical-align: middle;
  751. color: #333333;
  752. font-size: 12px;
  753. line-height: 17px;
  754. margin-left: 4px;
  755. }
  756. #homeCantiner .rankBigBox .hotVideoBox .hotVideo .vidoe_info .zan {
  757. margin-top: 13px;
  758. }
  759. #homeCantiner .rankBigBox .hotVideoBox .hotVideo .vidoe_info .zan img {
  760. width: 17px;
  761. display: inline-block;
  762. vertical-align: middle;
  763. }
  764. #homeCantiner .rankBigBox .hotVideoBox .hotVideo .vidoe_info .zan span {
  765. color: #333333;
  766. font-size: 12px;
  767. line-height: 17px;
  768. margin-left: 6px;
  769. }
  770. #homeCantiner .rankBigBox .moreFunction {
  771. margin-top: 90px;
  772. margin-bottom: 75px;
  773. }
  774. #homeCantiner .rankBigBox .moreFunction li {
  775. text-align: center;
  776. width: 140px;
  777. float: left;
  778. margin-right: 134px;
  779. transition: all 0.6s;
  780. }
  781. #homeCantiner .rankBigBox .moreFunction li:hover {
  782. transform: scale(1.4);
  783. }
  784. #homeCantiner .rankBigBox .moreFunction li:last-of-type {
  785. margin-right: 0;
  786. }
  787. #homeCantiner .rankBigBox .moreFunction li .functionImg {
  788. width: 139px;
  789. height: 120px;
  790. margin: auto;
  791. }
  792. #homeCantiner .rankBigBox .moreFunction li .functionImg img {
  793. width: 100%;
  794. }
  795. #homeCantiner .rankBigBox .moreFunction li .functionName {
  796. color: #111111;
  797. font-size: 12px;
  798. line-height: 17px;
  799. margin-top: 32px;
  800. }
  801. footer {
  802. width: 100%;
  803. height: 270px;
  804. position: relative;
  805. background: #202020;
  806. }
  807. footer .con {
  808. width: 1246px;
  809. height: 230px;
  810. position: relative;
  811. margin: auto;
  812. padding-top: 32px;
  813. box-sizing: border-box;
  814. }
  815. footer .con .left {
  816. float: left;
  817. }
  818. footer .con .left .logo {
  819. height: 47px;
  820. display: inline-block;
  821. vertical-align: top;
  822. margin-right: 50px;
  823. }
  824. footer .con .left .outerChainBox {
  825. display: inline-block;
  826. vertical-align: top;
  827. color: #ffffff;
  828. width: 100px;
  829. text-align: center;
  830. margin: 0 20px;
  831. }
  832. footer .con .left .outerChainBox li {
  833. font-size: 10px;
  834. line-height: 14px;
  835. margin-bottom: 13px;
  836. color: rgba(255, 255, 255, 0.8);
  837. }
  838. footer .con .left .outerChainBox li:first-of-type {
  839. font-size: 13px;
  840. line-height: 18px;
  841. font-weight: 600;
  842. margin-bottom: 18px;
  843. color: #ffffff;
  844. }
  845. footer .con .left .outerChainBox li a {
  846. color: rgba(255, 255, 255, 0.8);
  847. }
  848. footer .con .left .outerChainBox li a:hover {
  849. color: #2662FF;
  850. }
  851. footer .con .right {
  852. float: right;
  853. }
  854. footer .con .right .evmBox {
  855. display: inline-block;
  856. vertical-align: top;
  857. text-align: center;
  858. margin: 0 9px;
  859. }
  860. footer .con .right .evmBox .imgBox {
  861. width: 90px;
  862. height: 90px;
  863. border-radius: 4px;
  864. margin: auto;
  865. background: #ffffff;
  866. overflow: hidden;
  867. }
  868. footer .con .right .evmBox .imgBox img {
  869. width: 100%;
  870. height: 100%;
  871. }
  872. footer .con .right .evmBox .desc {
  873. color: rgba(255, 255, 255, 0.8);
  874. font-size: 10px;
  875. line-height: 14px;
  876. margin-top: 8px;
  877. }
  878. footer .recordBottom {
  879. background: #262626;
  880. clear: both;
  881. font-size: 12px;
  882. font-weight: 400;
  883. line-height: 40px;
  884. text-align: center;
  885. color: #878787;
  886. }