main.bff48912.chunk.css 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  1. @-webkit-keyframes PhotoView__rotate {
  2. from {
  3. transform: rotate(0deg);
  4. }
  5. to {
  6. transform: rotate(360deg);
  7. }
  8. }
  9. @keyframes PhotoView__rotate {
  10. from {
  11. transform: rotate(0deg);
  12. }
  13. to {
  14. transform: rotate(360deg);
  15. }
  16. }
  17. @-webkit-keyframes PhotoView__delayShow {
  18. 0%,
  19. 50% {
  20. opacity: 0;
  21. }
  22. 100% {
  23. opacity: 1;
  24. }
  25. }
  26. @keyframes PhotoView__delayShow {
  27. 0%,
  28. 50% {
  29. opacity: 0;
  30. }
  31. 100% {
  32. opacity: 1;
  33. }
  34. }
  35. .PhotoView__Spinner {
  36. -webkit-animation: PhotoView__delayShow 0.4s linear both;
  37. animation: PhotoView__delayShow 0.4s linear both;
  38. }
  39. .PhotoView__Spinner svg {
  40. -webkit-animation: PhotoView__rotate 0.6s linear infinite;
  41. animation: PhotoView__rotate 0.6s linear infinite;
  42. }
  43. .PhotoView__Photo {
  44. will-change: transform;
  45. cursor: -webkit-grab;
  46. cursor: grab;
  47. }
  48. .PhotoView__Photo:active {
  49. cursor: -webkit-grabbing;
  50. cursor: grabbing;
  51. }
  52. @-webkit-keyframes PhotoView__animateIn {
  53. from {
  54. opacity: 0.4;
  55. transform: scale(0.2);
  56. }
  57. to {
  58. opacity: 1;
  59. transform: scale(1);
  60. }
  61. }
  62. @keyframes PhotoView__animateIn {
  63. from {
  64. opacity: 0.4;
  65. transform: scale(0.2);
  66. }
  67. to {
  68. opacity: 1;
  69. transform: scale(1);
  70. }
  71. }
  72. @-webkit-keyframes PhotoView__animateOut {
  73. from {
  74. opacity: 1;
  75. transform: scale(1);
  76. }
  77. to {
  78. opacity: 0;
  79. transform: scale(0.2);
  80. }
  81. }
  82. @keyframes PhotoView__animateOut {
  83. from {
  84. opacity: 1;
  85. transform: scale(1);
  86. }
  87. to {
  88. opacity: 0;
  89. transform: scale(0.2);
  90. }
  91. }
  92. .PhotoView__animateIn {
  93. opacity: 0.4;
  94. -webkit-animation: PhotoView__animateIn 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) both;
  95. animation: PhotoView__animateIn 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) both;
  96. }
  97. .PhotoView__animateOut {
  98. opacity: 1;
  99. -webkit-animation: PhotoView__animateOut 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) both;
  100. animation: PhotoView__animateOut 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) both;
  101. }
  102. .PhotoView__PhotoWrap {
  103. position: absolute;
  104. top: 0;
  105. left: 0;
  106. display: flex;
  107. justify-content: center;
  108. align-items: center;
  109. width: 100%;
  110. height: 100%;
  111. z-index: 10;
  112. overflow: hidden;
  113. }
  114. .PhotoView__PhotoBox {
  115. display: flex;
  116. justify-content: center;
  117. align-items: center;
  118. width: 0;
  119. height: 0;
  120. }
  121. .PhotoView__PhotoMask {
  122. position: absolute;
  123. top: 0;
  124. left: 0;
  125. width: 100%;
  126. height: 100%;
  127. z-index: -1;
  128. }
  129. .PhotoView-SlideWrap {
  130. position: fixed;
  131. top: 0;
  132. left: 0;
  133. width: 100%;
  134. height: 100%;
  135. z-index: 2000;
  136. overflow: hidden;
  137. }
  138. @-webkit-keyframes PhotoView__fade {
  139. from {
  140. opacity: 0;
  141. }
  142. to {
  143. opacity: 1;
  144. }
  145. }
  146. @keyframes PhotoView__fade {
  147. from {
  148. opacity: 0;
  149. }
  150. to {
  151. opacity: 1;
  152. }
  153. }
  154. .PhotoView-PhotoSlider__clean .PhotoView-PhotoSlider__BannerWrap,
  155. .PhotoView-PhotoSlider__clean .PhotoView-PhotoSlider__ArrowLeft,
  156. .PhotoView-PhotoSlider__clean .PhotoView-PhotoSlider__ArrowRight,
  157. .PhotoView-PhotoSlider__clean .PhotoView-PhotoSlider__FooterWrap {
  158. opacity: 0;
  159. }
  160. .PhotoView-PhotoSlider__willClose .PhotoView-PhotoSlider__BannerWrap:hover {
  161. opacity: 0;
  162. }
  163. .PhotoView-PhotoSlider__Backdrop {
  164. position: absolute;
  165. top: 0;
  166. left: 0;
  167. width: 100%;
  168. height: 100%;
  169. background: rgba(0, 0, 0, 0.6);
  170. z-index: -1;
  171. }
  172. .PhotoView-PhotoSlider__fadeIn {
  173. opacity: 0;
  174. -webkit-animation: PhotoView__fade 0.4s linear both;
  175. animation: PhotoView__fade 0.4s linear both;
  176. }
  177. .PhotoView-PhotoSlider__fadeOut {
  178. opacity: 0;
  179. animation: PhotoView__fade 0.4s linear both reverse;
  180. }
  181. .PhotoView-PhotoSlider__BannerWrap {
  182. position: absolute;
  183. left: 0;
  184. top: 0;
  185. display: flex;
  186. justify-content: space-between;
  187. align-items: center;
  188. width: 100%;
  189. height: 44px;
  190. color: white;
  191. background-color: rgba(0, 0, 0, 0.5);
  192. transition: opacity 0.2s ease-out;
  193. z-index: 20;
  194. }
  195. .PhotoView-PhotoSlider__BannerWrap:hover {
  196. opacity: 1;
  197. }
  198. .PhotoView-PhotoSlider__Counter {
  199. padding: 0 10px;
  200. font-size: 14px;
  201. opacity: 0.75;
  202. }
  203. .PhotoView-PhotoSlider__BannerRight {
  204. display: flex;
  205. align-items: center;
  206. height: 100%;
  207. }
  208. .PhotoView-PhotoSlider__toolbarIcon {
  209. box-sizing: border-box;
  210. padding: 10px;
  211. opacity: 0.75;
  212. cursor: pointer;
  213. transition: opacity 0.2s linear;
  214. }
  215. .PhotoView-PhotoSlider__toolbarIcon:hover {
  216. opacity: 1;
  217. }
  218. .PhotoView-PhotoSlider__ArrowLeft,
  219. .PhotoView-PhotoSlider__ArrowRight {
  220. position: absolute;
  221. top: 0;
  222. bottom: 0;
  223. display: flex;
  224. justify-content: center;
  225. align-items: center;
  226. width: 70px;
  227. height: 100px;
  228. margin: auto;
  229. opacity: 0.75;
  230. z-index: 20;
  231. cursor: pointer;
  232. -webkit-user-select: none;
  233. -moz-user-select: none;
  234. -ms-user-select: none;
  235. user-select: none;
  236. transition: opacity 0.2s linear;
  237. }
  238. .PhotoView-PhotoSlider__ArrowLeft:hover,
  239. .PhotoView-PhotoSlider__ArrowRight:hover {
  240. opacity: 1;
  241. }
  242. .PhotoView-PhotoSlider__ArrowLeft svg,
  243. .PhotoView-PhotoSlider__ArrowRight svg {
  244. box-sizing: content-box;
  245. padding: 10px;
  246. width: 24px;
  247. height: 24px;
  248. fill: white;
  249. background: rgba(0, 0, 0, 0.3);
  250. }
  251. .PhotoView-PhotoSlider__ArrowLeft {
  252. left: 0;
  253. }
  254. .PhotoView-PhotoSlider__ArrowRight {
  255. right: 0;
  256. }
  257. .PhotoView-PhotoSlider__FooterWrap {
  258. box-sizing: border-box;
  259. position: absolute;
  260. left: 0;
  261. bottom: 0;
  262. padding: 10px;
  263. width: 100%;
  264. min-height: 44px;
  265. line-height: 1.5;
  266. font-size: 14px;
  267. color: #ccc;
  268. background-color: rgba(0, 0, 0, 0.5);
  269. text-align: justify;
  270. transition: opacity 0.2s ease-out;
  271. z-index: 20;
  272. }
  273. /*# sourceMappingURL=main.bff48912.chunk.css.map*/