style.min.css 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. ul,
  6. li {
  7. list-style: none;
  8. }
  9. html {
  10. height: 100%;
  11. overflow: hidden;
  12. }
  13. body {
  14. margin: 0;
  15. padding: 0;
  16. width: 100%;
  17. height: 100%;
  18. overflow: hidden;
  19. opacity: 0;
  20. }
  21. .oddshadow {
  22. position: absolute;
  23. display: none;
  24. top: 0;
  25. left: 0;
  26. height: 100%;
  27. width: 12%;
  28. pointer-events: none;
  29. background-image: -webkit-gradient(
  30. linear,
  31. left top,
  32. right top,
  33. from(rgba(60, 60, 60, 0.4)),
  34. color-stop(40%, rgba(60, 60, 60, 0.2)),
  35. color-stop(60%, rgba(60, 60, 60, 0.1)),
  36. to(rgba(200, 200, 200, 0))
  37. );
  38. }
  39. .evenshadow {
  40. display: none;
  41. position: absolute;
  42. top: 0;
  43. right: 0;
  44. height: 100%;
  45. width: 20%;
  46. pointer-events: none;
  47. background-image: -webkit-gradient(
  48. linear,
  49. right top,
  50. left top,
  51. color-stop(0, rgba(60, 60, 60, 0.3)),
  52. color-stop(0.23, rgba(250, 250, 250, 0.05)),
  53. color-stop(0.28, rgba(255, 255, 255, 0.05)),
  54. color-stop(0.34, rgba(250, 250, 250, 0.05)),
  55. color-stop(0.54, rgba(50, 50, 50, 0.1)),
  56. color-stop(1, rgba(200, 200, 200, 0))
  57. );
  58. }
  59. .flipbook .p1 .oddshadow {
  60. background: none;
  61. }
  62. .flipbook .plast .evenshadow {
  63. background: none;
  64. }
  65. .loading {
  66. position: absolute;
  67. top: 0;
  68. width: 100%;
  69. height: 100%;
  70. background: #000;
  71. z-index: 999;
  72. }
  73. .flipbook-panzoom {
  74. width: 100%;
  75. height: 100%;
  76. cursor: auto !important;
  77. }
  78. .flipbook-viewport {
  79. height: 100%;
  80. }
  81. .thickness {
  82. width: 0;
  83. /* background: url(../img/thickness.png) no-repeat right; */
  84. height: 100%;
  85. position: absolute;
  86. background-size: 100% 100%;
  87. z-index: 50;
  88. -webkit-transition: width 500ms, right 500ms;
  89. -o-transition: width 500ms, right 500ms;
  90. transition: width 500ms, right 500ms;
  91. }
  92. .thickness_left {
  93. width: 0;
  94. /* background: url(../img/thickness_left.png) no-repeat right; */
  95. height: 100%;
  96. position: absolute;
  97. background-size: 100% 100%;
  98. z-index: 50;
  99. -webkit-transition: width 500ms, right 500ms;
  100. -o-transition: width 500ms, right 500ms;
  101. transition: width 500ms, right 500ms;
  102. }
  103. .config .top_bar {
  104. position: absolute;
  105. top: 50px;
  106. width: 100%;
  107. text-align: center;
  108. font-size: 20px;
  109. color: #ffffff;
  110. }
  111. .config .bottom_p .bottom_bar {
  112. position: absolute;
  113. z-index: 13;
  114. bottom: 15px;
  115. left: 0;
  116. right: 0;
  117. margin: auto;
  118. width: 420px;
  119. height: 50px;
  120. border-radius: 10px;
  121. /* background: rgba(0, 0, 0, 0.4); */
  122. display: flex;
  123. justify-content: space-around;
  124. align-items: center;
  125. }
  126. .config .bottom_p .bottom_bar .btnbox {
  127. width: 42px;
  128. height: 42px;
  129. line-height: 42px;
  130. text-align: center;
  131. border-radius: 10px;
  132. background-size: 30px 30px;
  133. }
  134. .config .bottom_p .bottom_bar .btnbox:hover {
  135. background-color: rgba(0, 0, 0, 0.5) !important;
  136. }
  137. .config .bottom_p .bottom_bar img {
  138. margin-top: 6px;
  139. width: 30px;
  140. height: 30px;
  141. }
  142. .config .bottom_p .bottom_bar .btninput {
  143. width: 70px;
  144. height: 26px;
  145. }
  146. .config .bottom_p .bottom_bar .btninput input {
  147. width: 100%;
  148. height: 26px;
  149. border-radius: 50px;
  150. outline: none;
  151. border: none;
  152. text-align: center;
  153. padding: 0;
  154. background:#c89d45;
  155. border:none;
  156. color:#fff;
  157. }
  158. .config .bottom_p .thumbnail {
  159. background: url(../img/thumbnail.png) no-repeat center;
  160. }
  161. .config .bottom_p .playpage {
  162. background: url(../img/play.png) no-repeat center;
  163. }
  164. .config .bottom_p .shangyiye {
  165. background: url(../img/prev.png) no-repeat center;
  166. }
  167. .config .bottom_p .xiayiye {
  168. background: url(../img/next.png) no-repeat center;
  169. }
  170. .config .bottom_p .flsize {
  171. background: url(../img/enlarge_icon.png) no-repeat center;
  172. }
  173. .config .bottom_p .bangzhu {
  174. background: url(../img/bangzhu.svg) no-repeat center;
  175. }
  176. .config .bottom_v {
  177. background: rgba(0, 0, 0, 0.5);
  178. position: absolute;
  179. z-index: 12;
  180. bottom: 0;
  181. left: 0;
  182. right: 0;
  183. height: 50px;
  184. margin: auto;
  185. }
  186. .config .bottom_v .bottom_bar {
  187. position: absolute;
  188. z-index: 13;
  189. top: 0;
  190. left: 0;
  191. right: 0;
  192. margin: auto;
  193. min-width: 300px;
  194. height: 50px;
  195. border-radius: 10px;
  196. display: flex;
  197. justify-content: space-around;
  198. align-items: center;
  199. }
  200. .config .bottom_v .bottom_bar .btnbox {
  201. width: 42px;
  202. height: 42px;
  203. line-height: 42px;
  204. text-align: center;
  205. border-radius: 10px;
  206. background-size: 30px 30px !important;
  207. }
  208. .config .bottom_v .bottom_bar img {
  209. margin-top: 6px;
  210. width: 30px;
  211. height: 30px;
  212. }
  213. .config .bottom_v .bottom_bar .btninput {
  214. width: 70px;
  215. height: 26px;
  216. }
  217. .config .bottom_v .bottom_bar .btninput input {
  218. width: 100%;
  219. height: 26px;
  220. border-radius: 5px;
  221. outline: none;
  222. border: none;
  223. text-align: center;
  224. padding: 0;
  225. }
  226. .config .bottom_v .thumbnail {
  227. background: url(../img/thumbnail_v.svg) no-repeat center;
  228. }
  229. .config .bottom_v .playpage {
  230. background: url(../img/bofang_v.svg) no-repeat center;
  231. }
  232. .config .bottom_v .shangyiye {
  233. background: url(../img/shangyiye_v.svg) no-repeat center;
  234. }
  235. .config .bottom_v .xiayiye {
  236. background: url(../img/xiayiye_v.svg) no-repeat center;
  237. }
  238. .config .bottom_v .flsize {
  239. background: url(../img/comiisfangda_v.svg) no-repeat center;
  240. }
  241. .config .bottom_v .bangzhu {
  242. background: url(../img/bangzhu_v.svg) no-repeat center;
  243. }
  244. .config .thumbnail_box_p {
  245. display: none;
  246. position: absolute;
  247. z-index: 12;
  248. bottom: 70px;
  249. left: 0;
  250. right: 0;
  251. width: 100%;
  252. padding-left: 10px;
  253. padding-right: 10px;
  254. box-sizing: border-box;
  255. text-align: center;
  256. overflow: hidden;
  257. cursor: grab;
  258. }
  259. .config .thumbnail_box_p .thumbnail_p {
  260. max-width: 100%;
  261. display: inline-block;
  262. border-radius: 8px;
  263. padding-top: 5px;
  264. padding-left: 5px;
  265. background: rgba(0, 0, 0, 0.5);
  266. overflow: hidden;
  267. }
  268. .config .thumbnail_box_p ul {
  269. white-space: nowrap;
  270. display: inline-block;
  271. color: black;
  272. }
  273. .config .thumbnail_box_p ul li {
  274. border-radius: 8px;
  275. margin-right: 5px;
  276. display: inline-block;
  277. }
  278. .config .thumbnail_box_p ul li .pagebox {
  279. display: flex;
  280. overflow: hidden;
  281. border-radius: 5px;
  282. height: 70px;
  283. }
  284. .config .thumbnail_box_p ul li .pagebox > div {
  285. width: 70px;
  286. height: 70px;
  287. }
  288. .config .thumbnail_box_p ul .active {
  289. border: 2px solid #f6cd45;
  290. }
  291. .config .thumbnail_box_p img {
  292. width: 100%;
  293. height: 100%;
  294. }
  295. .config .thumbnail_box_v {
  296. display: none;
  297. position: absolute;
  298. z-index: 12;
  299. bottom: 0;
  300. left: 0;
  301. right: 0;
  302. top: 30%;
  303. margin: auto;
  304. background: #fff;
  305. border-radius: 20px 20px 0 0;
  306. }
  307. .config .thumbnail_box_v .title {
  308. background: #f1f1f1;
  309. border-radius: 20px 20px 0 0;
  310. text-align: center;
  311. }
  312. .config .thumbnail_box_v .off {
  313. position: absolute;
  314. right: 10px;
  315. top: 10px;
  316. width: 16px;
  317. border: 10px solid transparent;
  318. }
  319. .config .thumbnail_box_v .box_list {
  320. position: absolute;
  321. top: 50px;
  322. bottom: 0;
  323. left: 0;
  324. right: 0;
  325. overflow: auto;
  326. }
  327. .config .thumbnail_box_v ul {
  328. width: 100%;
  329. padding-left: 20px;
  330. box-sizing: border-box;
  331. overflow: auto;
  332. }
  333. .config .thumbnail_box_v ul li {
  334. float: left;
  335. padding: 20px 20px 0 0;
  336. width: 50%;
  337. box-sizing: border-box;
  338. }
  339. .config .thumbnail_box_v ul li .xv {
  340. position: relative;
  341. height: 0;
  342. padding-bottom: 100%;
  343. }
  344. .config .thumbnail_box_v ul li .xv div {
  345. position: absolute;
  346. top: 0;
  347. bottom: 0;
  348. left: 0;
  349. right: 0;
  350. border-radius: 8px;
  351. }
  352. .config .thumbnail_box_v ul li img {
  353. position: absolute;
  354. border-radius: 8px;
  355. width: 100%;
  356. height: 100%;
  357. }
  358. .config .thumbnail_box_v ul .active .xv div {
  359. border: 2px solid #f6cd45;
  360. box-sizing: border-box;
  361. }
  362. .config .help_p {
  363. display: none;
  364. position: absolute;
  365. top: 0;
  366. z-index: 11;
  367. width: 100%;
  368. height: 100%;
  369. background: rgba(0, 0, 0, 0.8);
  370. color: #ffffff;
  371. font-size: 12px;
  372. }
  373. .config .help_p .helpbox {
  374. position: absolute;
  375. bottom: 65px;
  376. left: 0;
  377. right: 0;
  378. width: 420px;
  379. margin: auto;
  380. display: flex;
  381. justify-content: space-between;
  382. align-items: flex-end;
  383. }
  384. .config .help_p .helpbox > div {
  385. width: 50px;
  386. text-align: center;
  387. }
  388. .config .help_p .helpbox > div p {
  389. position: relative;
  390. left: -51px;
  391. width: 150px;
  392. }
  393. .config .help_p .helpbox > div img {
  394. width: 15px;
  395. }
  396. .config .help_p .helpbox .helpqr {
  397. position: absolute;
  398. right: -63px;
  399. }
  400. .config .help_v {
  401. display: none;
  402. position: absolute;
  403. top: 0;
  404. z-index: 11;
  405. width: 100%;
  406. height: 100%;
  407. background: rgba(0, 0, 0, 0.8);
  408. color: #ffffff;
  409. font-size: 12px;
  410. }
  411. .config .help_v .helpbox {
  412. position: absolute;
  413. bottom: 65px;
  414. left: 0;
  415. right: 0;
  416. min-width: 300px;
  417. margin: auto;
  418. display: flex;
  419. justify-content: space-around;
  420. align-items: flex-end;
  421. }
  422. .config .help_v .helpbox > div {
  423. width: 50px;
  424. text-align: center;
  425. }
  426. .config .help_v .helpbox > div p {
  427. position: relative;
  428. left: -51px;
  429. width: 150px;
  430. }
  431. .config .help_v .helpbox > div img {
  432. width: 15px;
  433. }
  434. .config .help_v .helpbox .helpqr {
  435. display: none;
  436. position: absolute;
  437. right: -63px;
  438. }
  439. .config .help_m {
  440. display: none;
  441. position: absolute;
  442. z-index: 20;
  443. top: 0;
  444. width: 100%;
  445. height: 100%;
  446. }
  447. .config .speed_p {
  448. position: absolute;
  449. right: 0;
  450. left: 0;
  451. margin: auto;
  452. width: 420px;
  453. height: 40px;
  454. bottom: 70px;
  455. background-color: rgba(0, 0, 0, 0.5);
  456. border-radius: 10px;
  457. }
  458. .config .speed_p span {
  459. color: #fff;
  460. line-height: 40px;
  461. margin-left: 13px;
  462. }
  463. .config .speed_p img {
  464. position: absolute;
  465. top: 10px;
  466. width: 18px;
  467. }
  468. .config .speed_p .spran {
  469. position: absolute;
  470. right: 30px;
  471. top: 17px;
  472. width: 282px;
  473. }
  474. .config .speed_v {
  475. position: absolute;
  476. right: 9px;
  477. margin: auto;
  478. width: 33px;
  479. height: 35%;
  480. bottom: 70px;
  481. background-color: rgba(0, 0, 0, 0.5);
  482. border-radius: 10px;
  483. }
  484. .config .speed_v span {
  485. position: absolute;
  486. bottom: 10px;
  487. line-height: 1.1;
  488. width: 36px;
  489. text-align: center;
  490. color: #fff;
  491. margin-left: -1px;
  492. font-size: 13px;
  493. }
  494. .config .speed_v img {
  495. position: absolute;
  496. left: 8px;
  497. width: 18px;
  498. }
  499. .config .speed_v .spran {
  500. position: absolute;
  501. right: 0;
  502. left: 0;
  503. top: 30px;
  504. bottom: 68px;
  505. }
  506. .config .speed_v .spran .progress_v {
  507. height: 100%;
  508. }
  509. .qrcode {
  510. position: absolute;
  511. right: -60px;
  512. height: 50px;
  513. border-radius: 10px;
  514. background: rgba(0, 0, 0, 0.5);
  515. }
  516. .qrcode img {
  517. margin-top: 8px !important;
  518. width: 26px !important;
  519. height: 26px !important;
  520. }
  521. .qrcode .qrimg {
  522. display: none;
  523. position: absolute;
  524. width: 180px;
  525. height: 180px;
  526. bottom: 70px;
  527. left: -55px;
  528. text-align: center;
  529. background: rgba(0, 0, 0, 0.5);
  530. border-radius: 15px;
  531. z-index: 9999;
  532. padding-top: 20px;
  533. }
  534. .qrcode .qrimg canvas {
  535. width: 130px;
  536. height: 130px;
  537. padding: 10px;
  538. background: #ffffff;
  539. }
  540. .qrcode .qrimg p {
  541. color: #ffffff;
  542. position: absolute;
  543. bottom: 0;
  544. width: 100%;
  545. line-height: 2;
  546. }
  547. .tooltipster-box {
  548. border-radius: 100px !important;
  549. font-size: 12px !important;
  550. }