index.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711
  1. /* 头部吸顶 */
  2. .header {
  3. /* padding: 0 16px; */
  4. padding-top: 0;
  5. background-color: #000;
  6. }
  7. .accountRight {
  8. display: flex;
  9. align-items: center;
  10. }
  11. .addressImg {
  12. width: 22px;
  13. height: 22px;
  14. }
  15. .navShow {
  16. width: 100%;
  17. padding: 0 .32rem;
  18. margin-top: 15px;
  19. box-sizing: border-box;
  20. overflow-x: scroll; /* 设置溢出滚动 */
  21. white-space: nowrap;
  22. overflow-y: hidden;
  23. /* 隐藏滚动条 */
  24. scrollbar-width: none; /* firefox */
  25. -ms-overflow-style: none; /* IE 10+ */
  26. }
  27. .navShow::-webkit-scrollbar {
  28. display: none; /* Chrome Safari */
  29. }
  30. .headBanner {
  31. display: flex;
  32. flex-direction: column;
  33. align-items: center;
  34. margin-top: .4rem;
  35. }
  36. /* 导航分类 */
  37. .nav {
  38. display: flex;
  39. justify-content: space-between;
  40. align-items: center;
  41. }
  42. .nav li{
  43. display: flex;
  44. flex-direction: column;
  45. justify-content: center;
  46. align-items: center;
  47. /* flex: 1; */
  48. /* width: 1.8rem; */
  49. }
  50. .nav li img {
  51. width: 20px;
  52. height: 20px;
  53. }
  54. .nav li .asiaimg {
  55. width: 25px;
  56. height: 20px;
  57. }
  58. .navText {
  59. margin-top: 10px;
  60. text-align: center;
  61. }
  62. .searchInputContent {
  63. display: flex;
  64. justify-content: space-between;
  65. align-items: center;
  66. width: 100%;
  67. }
  68. .clearTextImg {
  69. width: 20px;
  70. height: 20px;
  71. }
  72. /* 搜索 */
  73. .searchImg, .userImg {
  74. width: 30px;
  75. height: 30px;
  76. margin-right: .4rem;
  77. }
  78. /* 主要展示区 */
  79. .main {
  80. /* padding: 0 0 1rem 0; */
  81. padding-bottom: .1rem;
  82. min-height: 60vh;
  83. }
  84. /* 视频 */
  85. .videopage {
  86. }
  87. .title {
  88. margin-left: 13px;
  89. min-height: 27px;
  90. line-height: 27px;
  91. font-size: .38rem;
  92. color: #fff;
  93. }
  94. .titleHead {
  95. }
  96. .tail {
  97. }
  98. h2 {
  99. margin-left: 13px;
  100. margin-top: 20px;
  101. min-height: 27px;
  102. line-height: 27px;
  103. }
  104. .video {
  105. padding: .3rem 0;
  106. display: flex;
  107. flex-direction: column;
  108. /* justify-content: center; */
  109. align-items: center;
  110. }
  111. /* 单条视频 */
  112. .videoContent {
  113. background-color: #1C1A1B;
  114. width: 100%;
  115. min-height: 4rem;
  116. border-radius: 5px;
  117. margin-bottom: .4rem;
  118. }
  119. .loading {
  120. display: flex;
  121. flex-direction: column;
  122. align-items: center;
  123. justify-content: center;
  124. }
  125. .loadingImg {
  126. width: 1.6rem;
  127. height: 1.52rem;
  128. }
  129. .loadingText {
  130. text-align: center;
  131. margin-top: 4px;
  132. color: #8E8D8D;
  133. font-size: 12px;
  134. }
  135. .videoPhoto, .bannerImg {
  136. position: relative;
  137. width: 100%;
  138. height: 3.6rem;
  139. background-repeat: no-repeat;
  140. background-position: 50% 50%;
  141. background-size: cover;
  142. border-top-left-radius:4px;
  143. border-top-right-radius:4px;
  144. }
  145. .bannerImg {
  146. height: 4rem;
  147. border-radius: .04rem;
  148. }
  149. .videoTitle {
  150. margin: .1rem .3rem;
  151. font-size: .28rem;
  152. /* 两行展示 */
  153. overflow: hidden;
  154. display: -webkit-box;
  155. -webkit-line-clamp: 2;
  156. -webkit-box-orient: vertical;
  157. word-break: break-all;
  158. }
  159. .videoTime {
  160. position: absolute;
  161. bottom: .1rem;
  162. right: .1rem;
  163. width: 1.6rem;
  164. background-color: rgba(0, 0, 0, 0.6);
  165. border-radius: .1rem;
  166. height: .4rem;
  167. line-height: .4rem;
  168. text-align: center;
  169. }
  170. /* 热门标签 */
  171. .labelpage{
  172. display: none;
  173. padding-top: .3rem;
  174. }
  175. .hotLabel {
  176. /* text-align: center; */
  177. /* display: grid; */
  178. /* // 设置网格布局 */
  179. /* grid-template-columns: 1fr 1fr 1fr 1fr 1fr; */
  180. /* // 列的比例分布,分成三例,每列占比总宽度的1/3 */
  181. /* grid-gap: .08rem; */
  182. /* // 各网格间距为10px */
  183. /* padding-bottom: .12rem; */
  184. display: flex;
  185. flex-wrap: wrap;
  186. padding:0 .26rem;
  187. }
  188. .label {
  189. margin-right: .12rem;
  190. margin-bottom: .12rem;
  191. /* width: 1.32rem; */
  192. padding: .2rem .2rem;
  193. border-radius: .2rem;
  194. /* height: 1rem; */
  195. background-color: #262626;
  196. font-size: .28rem;
  197. text-align: center;
  198. }
  199. .backToTop {
  200. position: fixed;
  201. bottom: 3.3rem;
  202. right: .3rem;
  203. width: .68rem;
  204. height: .68rem;
  205. display: none;
  206. }
  207. .backToTopImg {
  208. width: 100%;
  209. height: 100%;
  210. opacity: .5;
  211. }
  212. button {
  213. display: inline-block;
  214. padding: 6px 12px;
  215. font-weight: 400;
  216. line-height: 1.42857143;
  217. text-align: center;
  218. vertical-align: middle;
  219. cursor: pointer;
  220. border: 1px solid transparent;
  221. border-radius: 4px;
  222. border-color: #28a4c9;
  223. color: #fff;
  224. background-color: #5bc0de;
  225. margin: 20px 20px 0 0;
  226. }
  227. .box {
  228. width: 100%;
  229. /* padding-bottom: 1.5rem; */
  230. height: 80px;
  231. display: none;
  232. }
  233. .page {
  234. width: 100%;
  235. }
  236. .info {
  237. width: 200px;
  238. height: 34px;
  239. line-height: 34px;
  240. }
  241. .fl {
  242. float: left;
  243. }
  244. .textwrap {
  245. display: flex;
  246. justify-content: center;
  247. align-items: center;
  248. }
  249. .tiptext {
  250. background-color: #000;
  251. border-radius: .1rem;
  252. text-align: center;
  253. padding: .1rem .2rem;
  254. }
  255. .bottomLoadContent {
  256. display: none;
  257. }
  258. .quanWrap {
  259. display: flex;
  260. justify-content: center;
  261. align-items: center;
  262. }
  263. .quanText {
  264. font-size: .3rem;
  265. color: #fff;
  266. }
  267. .quanquan {
  268. margin-left: 20px;
  269. width: 20px;
  270. height: 20px;
  271. }
  272. .ageTipPage, .addressBox {
  273. z-index: 999;
  274. display: none;
  275. position: fixed;
  276. top: 0;
  277. left: 0;
  278. width: 100vw;
  279. height: 100vh;
  280. background-color: rgba(0,0,0,.6);
  281. }
  282. .ageTipPageContent {
  283. background-color: #25252A;
  284. position: fixed;
  285. top: 50%;
  286. left: 50%;
  287. transform: translate(-50%, -50%);
  288. width: 7rem;
  289. height: 380px;
  290. border-radius: 6px;
  291. display: flex;
  292. flex-direction: column;
  293. align-items: center;
  294. text-align: center;
  295. }
  296. .ageTipPageTitle {
  297. color: #DFDFDF;
  298. font-size: 27px;
  299. margin-top: 50px;
  300. }
  301. .ageTipPageText {
  302. margin-top: 30px;
  303. margin-bottom: 30px;
  304. font-size: 25px;
  305. color: #878789;
  306. }
  307. .ageTipPageTip {
  308. font-size: 13px;
  309. color: #959597;
  310. padding: 0 32px;
  311. }
  312. .confirmBtn {
  313. border-radius: 25px;
  314. height: 50px;
  315. line-height: 50px;
  316. width: 4.6rem;
  317. text-align: center;
  318. color: #fff;
  319. background-color: #CF5731;
  320. margin-top: 30px;
  321. }
  322. /* 筛选区 */
  323. .filterArea {
  324. }
  325. .screenHeader {
  326. height: .6rem;
  327. overflow-y: scroll;
  328. -webkit-overflow-scrolling: touch;
  329. margin: .3rem .26rem .2rem .26rem;
  330. }
  331. .screenHeader::-webkit-scrollbar {
  332. display: none;
  333. height: .6rem;
  334. }
  335. .screenHeaderContent {
  336. display: flex;
  337. width: 10rem;
  338. height: .6rem;
  339. }
  340. .screenHeaderContentLi {
  341. width: 2rem;
  342. text-align: center;
  343. margin-right: .2rem;
  344. height: .6rem;
  345. line-height: .6rem;
  346. /* padding: 0 .28rem; */
  347. background-color: #1C1A1B;
  348. border-radius: .04rem;
  349. color: #FFE0D2;
  350. font-size: .22rem;
  351. text-align: center;
  352. display: flex;
  353. justify-content: center;
  354. align-items: center;
  355. }
  356. .openImg {
  357. width: .3rem;
  358. height: .3rem;
  359. }
  360. .isscreenHeaderContentLi {
  361. background-color: #CE5C2A;
  362. color: #fff;
  363. }
  364. .FilteringModules {
  365. background-color: #2F2F2F;
  366. padding: .3rem .26rem;
  367. display: none;
  368. }
  369. .filterClear {
  370. display: flex;
  371. justify-content: space-between;
  372. align-items: center;
  373. height: .64rem;
  374. background-color: #1C1A1B;
  375. border-radius: .08rem;
  376. }
  377. .filterClearText {
  378. color: #CE5C2A;
  379. font-size: .26rem;
  380. margin-left: .2rem;
  381. }
  382. .filterClearImg {
  383. width: .48rem;
  384. height: .48rem;
  385. margin-right: .2rem;
  386. }
  387. .filterTime {
  388. display: flex;
  389. justify-content: space-between;
  390. align-items: center;
  391. background-color: #1C1A1B;
  392. border-radius: .08rem;
  393. margin-top: .3rem;
  394. overflow: hidden;
  395. padding: .2rem 0;
  396. }
  397. .filterLabelText {
  398. }
  399. #filterLabelTextTime {
  400. width: 1rem;
  401. }
  402. .filterTimeInteractive {
  403. margin-right: .2rem;
  404. }
  405. #box1{
  406. width: 5rem;
  407. height: .8rem;
  408. display: none;
  409. }
  410. .range{
  411. position: relative;
  412. width: 5rem;
  413. height: .8rem;
  414. display: flex;
  415. justify-content: center;
  416. align-items: center;
  417. }
  418. .chunk-one,.chunk-two{
  419. position: absolute;
  420. left: 0;
  421. width: .3rem;
  422. height: .3rem;
  423. border-radius: 50%;
  424. background-color: #fff;
  425. z-index: 10;
  426. cursor: pointer;
  427. transition: all .05s linear;
  428. box-sizing: border-box;
  429. }
  430. .range .chunk-two{
  431. left: 100%;
  432. background-color: #fff;
  433. }
  434. .strip-one,.strip-two{
  435. position: absolute;
  436. left: 0;
  437. height: 2px;
  438. width: 100%;
  439. }
  440. .strip-one{
  441. background-color: #666;
  442. }
  443. .strip-two{
  444. width: 100%;
  445. background-color: #CE5C2A;
  446. }
  447. strong{
  448. opacity: 0;
  449. }
  450. .filterTimeTextWrap {
  451. display: flex;
  452. justify-content: space-between;
  453. align-items: center;
  454. }
  455. .filterTimeText {
  456. /* text-align: center; */
  457. width: .6rem;
  458. }
  459. .filterLabelGroup {
  460. padding: .3rem 0 ;
  461. background-color: #1C1A1B;
  462. border-radius: .08rem;
  463. margin-top: .3rem;
  464. }
  465. .FilterLabelGroupContentWrap {
  466. display: flex;
  467. justify-content: space-between;
  468. }
  469. .FilterLabelGroupContent {
  470. display: flex;
  471. flex-wrap: wrap;
  472. margin-top: .36rem;
  473. margin-left: .2rem;
  474. }
  475. .filterLabelGroupText {
  476. margin-right: .2rem;
  477. margin-bottom: .2rem;
  478. padding: .04rem .1rem;
  479. border-radius: .08rem;
  480. background-color: #CE5C2A;
  481. color: #fff;
  482. font-size: .22rem;
  483. }
  484. .filterAddLabel {
  485. width: 1.8rem;
  486. display: flex;
  487. margin-right: .2rem;
  488. justify-content: space-between;
  489. }
  490. .filterAddLabelText {
  491. color: #E4E4E4;
  492. font-size: .22rem;
  493. }
  494. .filterAddLabelImg {
  495. width: .48rem;
  496. height: .48rem;
  497. }
  498. .filterLabelListContent {
  499. display: none;
  500. }
  501. .filterLabelList {
  502. margin-top: .2rem;
  503. background-color: #1C1A1B;
  504. border-radius: .16rem;
  505. display: flex;
  506. justify-content: space-between;
  507. align-items: center;
  508. width: 7rem;
  509. height: 1rem;
  510. }
  511. .filterLabelText {
  512. margin-left: .2rem;
  513. font-size: .3rem;
  514. color: #E4E4E4;
  515. }
  516. .filterLabelAdd {
  517. margin-right: .2rem;
  518. width: .48rem;
  519. height: .48rem;
  520. }
  521. .filterSwitch {
  522. background-color: rgba(0, 0, 0, 1);
  523. position: fixed;
  524. bottom: 0rem;
  525. left: 0;
  526. padding: .26rem;
  527. display: none;
  528. }
  529. .filterSwitchContent {
  530. display: flex;
  531. }
  532. .cancelFilter {
  533. width: 2.4rem;
  534. height: .88rem;
  535. line-height: .88rem;
  536. background-color: #262626;
  537. text-align: center;
  538. border-radius: .16rem;
  539. }
  540. .starFilter {
  541. width: 4.48rem;
  542. height: .88rem;
  543. line-height: .88rem;
  544. background-color: #CE5C2A;
  545. color: #fff;
  546. text-align: center;
  547. border-radius: .16rem;
  548. margin-left: .1rem;
  549. }
  550. .tip {
  551. width: 6rem;
  552. height: 1rem;
  553. color: #fff;
  554. position: absolute;
  555. top: 53%;
  556. left: 50%;
  557. transform: translate(-50%,-53%);
  558. display: none;
  559. z-index: -1;
  560. }
  561. .banner {
  562. background-color: #1C1A1B;
  563. width: 100%;
  564. border-radius: .1rem;
  565. margin-bottom: .4rem;
  566. }
  567. .media {
  568. position: absolute;
  569. left: 0;
  570. right: 0;
  571. top: 0;
  572. bottom: 0;
  573. width: 100%;
  574. height: 3.6rem;
  575. display: none;
  576. }
  577. /* 亚洲筛选 */
  578. .asiaScreenContent {
  579. margin-top: .3rem;
  580. margin-left: .3rem;
  581. width: 90%;
  582. overflow-x: scroll; /* 设置溢出滚动 */
  583. white-space: nowrap;
  584. overflow-y: hidden;
  585. /* 隐藏滚动条 */
  586. scrollbar-width: none; /* firefox */
  587. -ms-overflow-style: none; /* IE 10+ */
  588. display: none;
  589. }
  590. .asiaScreenContent::-webkit-scrollbar {
  591. display: none; /* Chrome Safari */
  592. }
  593. .asiaScreenContentUl {
  594. /* margin-left: .3rem; */
  595. width: 150%;
  596. display: flex;
  597. align-items: center;
  598. }
  599. .asiaScreenContentUlLi {
  600. margin-right: .2rem;
  601. display: flex;
  602. flex-direction: column;
  603. justify-content: center;
  604. align-items: center;
  605. border-radius: .1rem;
  606. border: 1px solid #2F2F2F;
  607. padding: 0 .26rem;
  608. height: 1rem;
  609. }
  610. .asiaScreenContentUlLiIsSelect {
  611. background-color: #2F2F2F;
  612. }
  613. .addressBoxContent {
  614. position: fixed;
  615. top: 50%;
  616. left: 50%;
  617. transform: translate(-50%, -50%);
  618. width: 7rem;
  619. display: flex;
  620. flex-direction: column;
  621. align-items: center;
  622. text-align: center;
  623. }
  624. .lingDang {
  625. position: absolute;
  626. top: 0;
  627. width: 2.4rem;
  628. height: 1.6rem;
  629. }
  630. .addressBoxTxtContent {
  631. background-color: #25252A;
  632. border-radius: 6px;
  633. padding: 1.4rem .4rem .4rem;
  634. margin-top: .54rem;
  635. }
  636. .addressBoxTxtContent p{
  637. text-align: left;
  638. }
  639. .addressTxt, .address {
  640. margin-bottom: .2rem;
  641. }
  642. .address {
  643. color: #CF5831;
  644. text-align: left;
  645. }
  646. .iSee {
  647. margin-top: .6rem;
  648. width: 6.2rem;
  649. height: 1.1rem;
  650. line-height: 1.1rem;
  651. text-align: center;
  652. border-radius: .3rem;
  653. font-size: 20px;
  654. background: linear-gradient(to bottom, #F85840, #F74149);
  655. }
  656. .addressBoxClose {
  657. margin-top: .4rem;
  658. width: .5rem;
  659. height: .5rem;
  660. }
  661. .filterTimeContent {
  662. margin-right: .2rem;
  663. }