components.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864
  1. .my-province {
  2. position: relative;
  3. }
  4. .my-province span {
  5. line-height: normal;
  6. color: #f03;
  7. font-size: 14px;
  8. margin-right: 5px;
  9. }
  10. .my-province i {
  11. margin-left: 5px;
  12. font-size: 12px;
  13. color: #e6e6e6;
  14. }
  15. .my-province div {
  16. display: none;
  17. width: 286px;
  18. position: absolute;
  19. top: 30px;
  20. z-index: 100;
  21. background-color: #fff;
  22. border: 1px solid #e6e6e6;
  23. padding: 10px;
  24. }
  25. .my-province div .icon-play {
  26. transform: rotate(-90deg);
  27. position: absolute;
  28. top: -10px;
  29. }
  30. .my-province div ul {
  31. width: 100%;
  32. padding: 0;
  33. list-style: none;
  34. display: flex;
  35. justify-content: flex-start;
  36. align-items: center;
  37. flex-wrap: wrap;
  38. margin: 0;
  39. }
  40. .my-province div ul > li:last-child {
  41. color: #f03;
  42. }
  43. .my-province div ul li {
  44. padding: 5px;
  45. width: 60px;
  46. margin: 3px;
  47. box-sizing: border-box;
  48. }
  49. .my-province div ul li:hover {
  50. background-color: #f6f6f6;
  51. border: 5px;
  52. }
  53. .my-search {
  54. margin: 32px 30px 0 0;
  55. }
  56. .my-search div {
  57. display: flex;
  58. align-items: center;
  59. border: 1px solid #aaa;
  60. border-radius: 5px;
  61. padding: 0 0 0 5px;
  62. overflow: hidden;
  63. max-width: 300px;
  64. }
  65. .my-search div select {
  66. border: 0;
  67. outline: none;
  68. border-right: 1px solid #e6e6e6 !important;
  69. height: 34px;
  70. box-sizing: border-box;
  71. border-right: 0;
  72. }
  73. .my-search div input {
  74. border: 0;
  75. outline: none;
  76. padding: 5px;
  77. height: 34px;
  78. box-sizing: border-box;
  79. border-left: 0;
  80. width: 100%;
  81. }
  82. .my-search div label {
  83. display: block;
  84. margin: 0;
  85. height: 34px;
  86. box-sizing: border-box;
  87. color: #0099CC !important;
  88. line-height: 34px;
  89. padding: 0 10px;
  90. color: #fff;
  91. }
  92. textarea {
  93. resize: none;
  94. }
  95. @keyframes nav {
  96. from {
  97. height: 0;
  98. }
  99. to {
  100. height: calc(100vh - 90px);
  101. }
  102. }
  103. @-webkit-keyframes nav {
  104. /* Safari and Chrome */
  105. from {
  106. height: 0;
  107. }
  108. to {
  109. height: calc(100vh - 90px);
  110. }
  111. }
  112. @-moz-keyframes nav {
  113. /* Safari and Chrome */
  114. from {
  115. height: 0;
  116. }
  117. to {
  118. height: calc(100vh - 90px);
  119. }
  120. }
  121. @keyframes navc {
  122. from {
  123. height: calc(100vh - 90px);
  124. }
  125. to {
  126. height: 0;
  127. }
  128. }
  129. @-webkit-keyframes navc {
  130. /* Safari and Chrome */
  131. from {
  132. height: calc(100vh - 90px);
  133. }
  134. to {
  135. height: 0;
  136. }
  137. }
  138. @-moz-keyframes navc {
  139. /* Safari and Chrome */
  140. from {
  141. height: calc(100vh - 90px);
  142. }
  143. to {
  144. height: 0;
  145. }
  146. }
  147. .show {
  148. display: block !important;
  149. }
  150. .noshow {
  151. display: none !important;
  152. }
  153. body {
  154. height: 100vh;
  155. overflow-y: scroll;
  156. }
  157. body a {
  158. text-decoration: none;
  159. color: #777;
  160. }
  161. body a:hover {
  162. color: #03C762;
  163. text-decoration: none;
  164. cursor: pointer;
  165. }
  166. body::-webkit-scrollbar {
  167. /*滚动条整体样式*/
  168. width: 5px;
  169. /*高宽分别对应横竖滚动条的尺寸*/
  170. height: 10px;
  171. }
  172. body::-webkit-scrollbar-thumb {
  173. /*滚动条里面小方块*/
  174. border-radius: 10px;
  175. -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  176. background: #999;
  177. }
  178. body::-webkit-scrollbar-thumb:hover {
  179. background: #03C762;
  180. }
  181. body::-webkit-scrollbar-track {
  182. /*滚动条里面轨道*/
  183. -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  184. border-radius: 10px;
  185. background: #eee;
  186. }
  187. .header {
  188. width: 100%;
  189. border-bottom: 1px solid #f1f1f1;
  190. background-color: #fff;
  191. position: fixed;
  192. z-index: 1000;
  193. }
  194. .header .my-province {
  195. margin-left: 5px;
  196. margin-top: 20px;
  197. }
  198. @media screen and (max-width: 768px) {
  199. .header .my-province {
  200. display: none;
  201. }
  202. }
  203. .header .ha-item {
  204. margin-top: 10px;
  205. height: 70px;
  206. }
  207. .header .ha-item .img {
  208. height: 100%;
  209. }
  210. .header .ha-item .img span {
  211. font-size: 30px;
  212. font-weight: bold;
  213. color: #03C762;
  214. display: block;
  215. line-height: 70px;
  216. }
  217. .header .ha-item .img img {
  218. height: 100%;
  219. }
  220. .header .ha-item .button {
  221. display: none;
  222. }
  223. @media screen and (max-width: 768px) {
  224. .header .ha-item .button {
  225. display: block;
  226. }
  227. }
  228. .header .ha-item .button .button {
  229. color: #03C762;
  230. padding: 10px;
  231. border: 2px solid #03C762;
  232. margin-top: 13px;
  233. text-align: center;
  234. font-size: 20px;
  235. border-radius: 5px;
  236. }
  237. @media screen and (max-width: 768px) {
  238. .header .ha-item .my-search {
  239. display: none;
  240. }
  241. }
  242. .header .ha-item .app {
  243. height: 100%;
  244. text-align: center;
  245. position: relative;
  246. }
  247. @media screen and (max-width: 768px) {
  248. .header .ha-item .app {
  249. display: none;
  250. }
  251. }
  252. .header .ha-item .app a {
  253. text-decoration: none;
  254. color: #03C762;
  255. }
  256. .header .ha-item .app a img {
  257. width: 50px;
  258. }
  259. .header .ha-item .app div {
  260. position: absolute;
  261. right: 0px;
  262. }
  263. .header .hb-item {
  264. box-sizing: border-box;
  265. }
  266. .header .hb-item .nav {
  267. box-sizing: border-box;
  268. width: 100%;
  269. display: flex;
  270. justify-content: flex-start;
  271. align-content: center;
  272. }
  273. @media screen and (max-width: 768px) {
  274. .header .hb-item .nav {
  275. display: none;
  276. }
  277. }
  278. .header .hb-item .nav > .nav-item > a.active {
  279. color: #03C762;
  280. }
  281. .header .hb-item .nav .nav-item {
  282. padding: 0 20px;
  283. }
  284. .header .hb-item .nav .nav-item a {
  285. color: #777;
  286. font-weight: bold;
  287. text-decoration: none;
  288. line-height: 40px;
  289. display: table-cell;
  290. vertical-align: bottom;
  291. font-size: 18px;
  292. }
  293. .header .hb-item .nav .nav-item a i {
  294. margin-left: 5px;
  295. font-size: 12px;
  296. color: #e6e6e6;
  297. }
  298. .header .hb-item .nav .nav-item a:hover {
  299. color: #03C762;
  300. }
  301. .header .hb-item .nav .nav-item .nav-ul {
  302. display: none;
  303. overflow: hidden;
  304. padding: 0;
  305. position: absolute;
  306. z-index: 1;
  307. background-color: #fff;
  308. overflow: auto !important;
  309. }
  310. .header .hb-item .nav .nav-item .nav-ul .nav-li {
  311. width: 100px;
  312. padding: 10px;
  313. list-style: none;
  314. }
  315. .header .hb-item .nav .nav-item .nav-ul .nav-li:hover {
  316. background-color: #03C762;
  317. }
  318. .header .hb-item .nav .nav-item .nav-ul .nav-li:hover a {
  319. color: #fff;
  320. }
  321. .header .hb-item .nav .nav-item .nav-ul .nav-li a {
  322. color: #777;
  323. line-height: 15px;
  324. font-size: small;
  325. }
  326. #nav-sm {
  327. position: fixed;
  328. z-index: 99;
  329. width: 100vw;
  330. overflow-y: scroll;
  331. box-sizing: border-box;
  332. background-color: #fff;
  333. margin-top: 80px;
  334. padding: 0 0 0 22px;
  335. }
  336. #nav-sm .my-province {
  337. padding: 20px 0;
  338. }
  339. #nav-sm .my-province div {
  340. top: 50px;
  341. }
  342. #nav-sm .search {
  343. padding: 20px 0;
  344. border-bottom: 1px solid #e6e6e6;
  345. }
  346. #nav-sm .search .my-search {
  347. margin: 0;
  348. }
  349. @media screen and (max-width: 768px) {
  350. #nav-sm {
  351. border-top: 1px solid #eee;
  352. }
  353. }
  354. #nav-sm::-webkit-scrollbar {
  355. height: 0;
  356. }
  357. #nav-sm > ul > li > a.active {
  358. color: #03C762;
  359. }
  360. #nav-sm ul {
  361. padding-inline-start: 0;
  362. }
  363. #nav-sm ul li {
  364. list-style-type: none;
  365. }
  366. #nav-sm ul li a {
  367. font-weight: bold;
  368. font-size: 20px;
  369. font-size: 16px;
  370. line-height: 40px;
  371. color: #555;
  372. text-decoration: none;
  373. }
  374. #nav-sm ul li a:hover {
  375. color: #03C762;
  376. }
  377. #nav-sm ul li .nav-sm-ul {
  378. display: flex;
  379. justify-content: flex-start;
  380. align-items: center;
  381. flex-wrap: wrap;
  382. padding: 0;
  383. }
  384. #nav-sm ul li .nav-sm-ul .nav-sm-li {
  385. padding: 0 10px;
  386. }
  387. #nav-sm ul li .nav-sm-ul .nav-sm-li a {
  388. font-size: 14px;
  389. font-weight: normal;
  390. }
  391. .nav-sm-noheight {
  392. height: 0px;
  393. }
  394. .nav-sm-show {
  395. height: calc(100vh - 80px);
  396. animation: nav 0.5s;
  397. -webkit-animation: nav 0.5s normal;
  398. -moz-animation: nav 0.5s;
  399. }
  400. .nav-sm-noshow {
  401. height: 0px;
  402. animation: navc 0.5s;
  403. -webkit-animation: navc 0.5s normal;
  404. -moz-animation: navc 0.5s;
  405. }
  406. .body {
  407. background-color: #fff;
  408. max-width: 1200px;
  409. min-height: 700px;
  410. overflow: hidden;
  411. position: relative;
  412. padding: 10px 15px 15px;
  413. margin: 141px 20px 20px;
  414. }
  415. .body .my-loading {
  416. text-align: center;
  417. color: #999;
  418. display: none;
  419. }
  420. .body .my-read {
  421. margin-top: 20px;
  422. text-align: center;
  423. }
  424. .body .my-read .good {
  425. border-radius: 5px;
  426. border: 1px solid #e6e6e6;
  427. display: inline-block;
  428. padding: 5px 30px;
  429. margin-bottom: 10px;
  430. }
  431. .body .my-search {
  432. margin: 10px 0;
  433. }
  434. .body .my-articles ul {
  435. width: 100%;
  436. border-top: 1px solid #e6e6e6;
  437. padding: 0;
  438. list-style: none;
  439. overflow: hidden;
  440. }
  441. .body .my-articles ul li {
  442. color: #777;
  443. overflow: hidden;
  444. text-overflow: ellipsis;
  445. white-space: nowrap;
  446. width: 100%;
  447. padding: 5px 0px;
  448. }
  449. .body .my-articles ul li::before {
  450. content: "";
  451. display: inline-block;
  452. width: 6px;
  453. height: 6px;
  454. background-color: #000;
  455. transform: translateY(-2px);
  456. margin-right: 5px;
  457. border-radius: 50%;
  458. }
  459. .body .my-comment .h5 {
  460. display: flex;
  461. justify-content: space-between;
  462. align-content: center;
  463. }
  464. .body .my-comment .remind {
  465. text-align: center;
  466. background-color: #e6e6e6;
  467. padding: 5px;
  468. border-radius: 5px;
  469. margin: 10px 0px;
  470. }
  471. .body .my-comment .comment {
  472. border-top: 1px solid #e6e6e6;
  473. padding-top: 10px;
  474. }
  475. .body .my-comment .comment .nocomment,
  476. .body .my-comment .comment .loading,
  477. .body .my-comment .comment .nodata {
  478. display: none;
  479. text-align: center;
  480. margin: 10px;
  481. }
  482. .body .my-comment .comment .nocomment {
  483. display: block;
  484. padding-bottom: 10px;
  485. }
  486. .body .my-comment .comment .nocomment:hover {
  487. color: #03C762;
  488. }
  489. .body .my-comment .comment .user {
  490. width: 100%;
  491. padding: 20px 0;
  492. border-bottom: 1px solid #e6e6e6;
  493. display: grid;
  494. grid-template-columns: 10% 90%;
  495. }
  496. .body .my-comment .comment .user .u-img {
  497. width: 100%;
  498. text-align: center;
  499. }
  500. .body .my-comment .comment .user .u-img .img {
  501. width: 100%;
  502. max-width: 64px;
  503. }
  504. .body .my-comment .comment .user .u-content {
  505. margin-left: 10px;
  506. text-align: justify;
  507. }
  508. .body .my-comment .comment .user .u-content .u-name {
  509. font-size: 16px;
  510. }
  511. .body .my-comment .comment .user .u-content .u-detail {
  512. padding: 5px 0px;
  513. }
  514. .body .my-comment .comment .user .u-content .u-flex {
  515. display: flex;
  516. justify-content: space-between;
  517. align-items: center;
  518. }
  519. .body .my-nav {
  520. border-bottom: 1px solid #e6e6e6;
  521. }
  522. .body .my-nav::after {
  523. display: block;
  524. content: '';
  525. clear: both;
  526. }
  527. .body .my-nav ul {
  528. list-style: none;
  529. padding: 0;
  530. }
  531. .body .my-nav ul li {
  532. float: left;
  533. padding: 5px;
  534. margin: 0px 5px;
  535. color: #777;
  536. }
  537. .body .my-nav ul .active {
  538. color: black;
  539. border-bottom: 3px solid #03C762;
  540. font-weight: bold;
  541. }
  542. .body .my-list .list-item {
  543. text-decoration: none;
  544. color: black;
  545. display: flex;
  546. justify-content: flex-start;
  547. align-items: start;
  548. padding-bottom: 10px;
  549. margin-bottom: 10px;
  550. border-bottom: 1px solid #e6e6e6;
  551. }
  552. .body .my-list .list-item:hover {
  553. color: #03C762;
  554. }
  555. .body .my-list .list-item .item-img {
  556. flex: 1;
  557. padding: 0 20px;
  558. }
  559. @media screen and (max-width: 768px) {
  560. .body .my-list .list-item .item-img {
  561. padding: 0 10px;
  562. }
  563. }
  564. .body .my-list .list-item .item-img img {
  565. width: 100%;
  566. border-radius: 5px;
  567. }
  568. .body .my-list .list-item .item-img img:hover {
  569. transform: scale(1.1);
  570. }
  571. .body .my-list .list-item .item-detail {
  572. flex: 4;
  573. height: 100%;
  574. position: relative;
  575. overflow: hidden;
  576. }
  577. @media screen and (max-width: 768px) {
  578. .body .my-list .list-item .item-detail {
  579. flex: 2;
  580. }
  581. }
  582. .body .my-list .list-item .item-detail .title {
  583. font-weight: 400;
  584. overflow: hidden;
  585. text-overflow: ellipsis;
  586. display: -webkit-box;
  587. -webkit-box-orient: vertical;
  588. -webkit-line-clamp: 2;
  589. font-size: 16px;
  590. }
  591. .body .my-list .list-item .item-detail .time {
  592. font-size: 12px;
  593. color: #777;
  594. margin-top: 5px;
  595. }
  596. .body .my-list .list-item .item-detail .time span {
  597. margin-left: 5px;
  598. }
  599. @media screen and (max-width: 768px) {
  600. .body {
  601. padding: 0px;
  602. border-radius: 10px 10px 0 0;
  603. margin: 100px 20px 20px;
  604. }
  605. }
  606. .footer {
  607. width: 100%;
  608. box-sizing: border-box;
  609. overflow: hidden;
  610. background-color: #fff;
  611. border-top: 1px solid #f1f1f1;
  612. text-align: center;
  613. color: #777;
  614. }
  615. .footer p {
  616. margin: 0;
  617. padding: 20px 0px 0px;
  618. }
  619. .footer > p:last-child {
  620. padding-bottom: 50px;
  621. }
  622. #top {
  623. position: fixed;
  624. bottom: 80px;
  625. right: 20px;
  626. padding: 20px;
  627. z-index: 1000;
  628. color: #fff;
  629. background-color: rgba(98, 96, 96, 0.3);
  630. border-radius: 10px;
  631. }
  632. #share {
  633. position: fixed;
  634. top: 60vh;
  635. right: 0px;
  636. box-sizing: border-box;
  637. display: flex;
  638. }
  639. @media screen and (max-width: 768px) {
  640. #share {
  641. display: none;
  642. }
  643. }
  644. #share > div:first-child {
  645. height: 132px;
  646. box-sizing: border-box;
  647. background-color: #03C762;
  648. color: #fff;
  649. font-size: 15px;
  650. width: 30px;
  651. letter-spacing: 10px;
  652. text-align: center;
  653. line-height: 30px;
  654. border-radius: 5px 0 0 5px;
  655. writing-mode: vertical-lr;
  656. /*从左向右 从右向左是 writing-mode: vertical-rl;*/
  657. writing-mode: tb-lr;
  658. /*IE浏览器的从左向右 从右向左是 writing-mode: tb-rl;*/
  659. }
  660. #share ul {
  661. width: 0px;
  662. height: 132px;
  663. border: 1px solid #aaa;
  664. border-right: none;
  665. list-style: none;
  666. padding: 0;
  667. box-sizing: border-box;
  668. background-color: #fff;
  669. }
  670. #share ul > li:first-child {
  671. background-color: #c6c6c6;
  672. line-height: 26px;
  673. font-weight: bold;
  674. }
  675. #share ul li {
  676. padding: 5px 10px;
  677. width: 100px;
  678. vertical-align: middle;
  679. }
  680. #share ul li img {
  681. width: 20px;
  682. vertical-align: middle;
  683. margin-right: 5px;
  684. }
  685. #share ul li:hover:not(ul>li:first-child) {
  686. background-color: #e6e6e6;
  687. }
  688. #share #qrcode {
  689. width: 180px;
  690. box-sizing: border-box;
  691. box-shadow: 0px 0px 5px #999;
  692. display: none;
  693. position: absolute;
  694. background-color: #fff;
  695. top: -210px;
  696. border-radius: 5px;
  697. right: 140px;
  698. }
  699. #share #qrcode::before {
  700. display: block;
  701. content: "微信扫一扫:分享";
  702. line-height: 30px;
  703. font-size: 12px;
  704. text-align: center;
  705. background-color: #e6e6e6;
  706. }
  707. #share #qrcode img {
  708. margin: auto;
  709. padding: 20px 0;
  710. }
  711. #share #qrcode .wei {
  712. text-align: center;
  713. }
  714. #toast {
  715. display: none;
  716. position: fixed;
  717. top: 0;
  718. left: 0;
  719. z-index: 100;
  720. width: 100vw;
  721. height: 100vh;
  722. background-color: rgba(29, 27, 27, 0.5);
  723. text-align: center;
  724. }
  725. #toast > div {
  726. background-color: #fff;
  727. position: absolute;
  728. padding: 5px;
  729. border-radius: 5px;
  730. width: 200px;
  731. left: calc(50vw - 100px);
  732. top: 30vh;
  733. }
  734. #download {
  735. position: fixed;
  736. bottom: 0px;
  737. width: 100vw;
  738. display: none;
  739. justify-content: space-between;
  740. align-items: center;
  741. background-color: rgba(1, 1, 1, 0.5);
  742. padding: 5px 10px;
  743. color: #fff;
  744. z-index: 1000;
  745. }
  746. #download .left {
  747. width: 200px;
  748. }
  749. #download .left::before {
  750. display: block;
  751. content: '';
  752. clear: both;
  753. }
  754. #download .left img,
  755. #download .left div {
  756. float: left;
  757. }
  758. #download .left img {
  759. width: 50px;
  760. }
  761. #download .left div {
  762. margin-left: 10px;
  763. }
  764. #download .left .row1 {
  765. margin-bottom: 10px;
  766. }
  767. @media screen and (max-width: 768px) {
  768. #download {
  769. display: flex;
  770. }
  771. }
  772. #imglist {
  773. display: none;
  774. overflow: scroll;
  775. position: fixed;
  776. width: 100vw;
  777. box-sizing: border-box;
  778. height: 100vh;
  779. top: 0;
  780. z-index: 1000;
  781. background-color: #fff;
  782. }
  783. #imglist::-webkit-scrollbar {
  784. /*滚动条整体样式*/
  785. width: 5px;
  786. /*高宽分别对应横竖滚动条的尺寸*/
  787. height: 5px;
  788. }
  789. #imglist::-webkit-scrollbar-thumb {
  790. /*滚动条里面小方块*/
  791. border-radius: 10px;
  792. -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  793. background: #999;
  794. }
  795. #imglist::-webkit-scrollbar-thumb:hover {
  796. background: #03C762;
  797. }
  798. #imglist::-webkit-scrollbar-track {
  799. /*滚动条里面轨道*/
  800. -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  801. border-radius: 10px;
  802. background: #eee;
  803. }
  804. #imglist p {
  805. position: fixed;
  806. bottom: 5px;
  807. width: 100%;
  808. text-align: center;
  809. }
  810. #imglist span {
  811. display: block;
  812. position: fixed;
  813. right: 20px;
  814. top: 10px;
  815. width: 35px;
  816. height: 115px;
  817. background-color: #000;
  818. padding: 5px;
  819. border-radius: 5px;
  820. }
  821. #imglist span img {
  822. width: 25px;
  823. position: relative !important;
  824. margin: 5px 0;
  825. }
  826. #imglist div {
  827. line-height: 100%;
  828. position: relative;
  829. width: 100%;
  830. height: 100%;
  831. }
  832. #imglist div img {
  833. position: absolute;
  834. }
  835. #imglist div .glyphicon {
  836. position: fixed;
  837. color: #000;
  838. width: 20%;
  839. max-width: 50px;
  840. height: 100px;
  841. border-radius: 5px;
  842. text-align: center;
  843. line-height: 100px;
  844. margin-top: calc(50vh - 50px);
  845. }
  846. #imglist div .glyphicon:hover {
  847. background-color: rgba(247, 237, 237, 0.5);
  848. }
  849. #imglist div .left {
  850. left: 50px;
  851. }
  852. @media screen and (max-width: 768px) {
  853. #imglist div .left {
  854. left: 10px;
  855. }
  856. }
  857. #imglist div .right {
  858. right: 50px;
  859. }
  860. @media screen and (max-width: 768px) {
  861. #imglist div .right {
  862. right: 10px;
  863. }
  864. }