index.module.scss 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  1. .Zhot {
  2. position: absolute;
  3. top: 0;
  4. left: 0;
  5. width: 100%;
  6. height: 100%;
  7. background-color: rgba(0, 0, 0, 0.4);
  8. backdrop-filter: blur(4px);
  9. z-index: 9999;
  10. display: flex;
  11. :global {
  12. // 所有图片盒子
  13. .ZHimgBox {
  14. overflow-x: auto;
  15. width: 100%;
  16. height: auto;
  17. // white-space: nowrap;
  18. display: inline-block;
  19. &::-webkit-scrollbar {
  20. display: none;
  21. }
  22. .adm-image {
  23. display: inline-block;
  24. width: auto;
  25. margin: 0 10px 10px;
  26. height: 130px;
  27. img {
  28. display: inline-block;
  29. width: auto;
  30. // width: 100%;
  31. height: 100%;
  32. object-fit: fill !important;
  33. }
  34. }
  35. }
  36. p {
  37. text-align: justify;
  38. }
  39. .ZHll {
  40. width: 60%;
  41. height: 100%;
  42. padding: 3% 0 3% 4%;
  43. // 标题
  44. .h2Titele {
  45. padding: 0 50px;
  46. position: relative;
  47. display: inline-block;
  48. color: #eacf60;
  49. font-size: 24px;
  50. margin-bottom: 8px;
  51. & > img {
  52. position: absolute;
  53. top: 60%;
  54. left: 0;
  55. transform: translateY(-50%);
  56. width: 40px;
  57. height: auto;
  58. }
  59. .h2TimgR {
  60. left: auto;
  61. right: 0;
  62. }
  63. }
  64. .ZH1main {
  65. background-size: 100% 100%;
  66. background-color: rgba(242, 242, 215, 0.3);
  67. width: 100%;
  68. height: calc(100% - 50px);
  69. display: flex;
  70. align-items: center;
  71. position: relative;
  72. padding: 18px 12px 60px;
  73. .ZH1main1 {
  74. max-height: 100%;
  75. overflow-y: auto;
  76. &::-webkit-scrollbar {
  77. display: none;
  78. }
  79. // 一级介绍
  80. .ZH1txt {
  81. font-size: 14px;
  82. line-height: 24px;
  83. color: #fffddc;
  84. p {
  85. font-family: 'Microsoft Yahei', 'PingFang SC', 'Avenir', 'Segoe UI',
  86. 'Hiragino Sans GB', 'STHeiti', 'Microsoft Sans Serif', 'WenQuanYi Micro Hei',
  87. sans-serif !important;
  88. margin-bottom: 10px;
  89. }
  90. h3 {
  91. color: #eacf60;
  92. font-family: 'Microsoft Yahei', 'PingFang SC', 'Avenir', 'Segoe UI',
  93. 'Hiragino Sans GB', 'STHeiti', 'Microsoft Sans Serif', 'WenQuanYi Micro Hei',
  94. sans-serif !important;
  95. margin-bottom: 8px;
  96. }
  97. }
  98. // 二级
  99. .ZH1_2 {
  100. margin-top: 10px;
  101. display: flex;
  102. .ZH1_2ll {
  103. padding-top: 5px;
  104. width: 100px;
  105. margin-right: 10px;
  106. .ZH1_2llRow {
  107. margin-bottom: 20px;
  108. cursor: pointer;
  109. color: #fffddc;
  110. font-size: 14px;
  111. position: relative;
  112. padding-left: 24px;
  113. transition: all 0.3s;
  114. & > img {
  115. position: absolute;
  116. top: 0;
  117. left: 0;
  118. height: 20px;
  119. &:nth-of-type(2) {
  120. opacity: 0;
  121. }
  122. }
  123. // &:hover {
  124. // color: #eacf60;
  125. // & > img {
  126. // opacity: 0;
  127. // &:nth-of-type(2) {
  128. // opacity: 1;
  129. // }
  130. // }
  131. // }
  132. }
  133. .ZH1_2llRowAc {
  134. color: #eacf60;
  135. & > img {
  136. opacity: 0;
  137. &:nth-of-type(2) {
  138. opacity: 1;
  139. }
  140. }
  141. }
  142. }
  143. .ZH1_2rr {
  144. width: calc(100% - 110px);
  145. font-size: 14px;
  146. line-height: 24px;
  147. color: #fffddc;
  148. p {
  149. font-size: 13px;
  150. font-family: 'Microsoft Yahei', 'PingFang SC', 'Avenir', 'Segoe UI',
  151. 'Hiragino Sans GB', 'STHeiti', 'Microsoft Sans Serif', 'WenQuanYi Micro Hei',
  152. sans-serif !important;
  153. margin-bottom: 10px;
  154. }
  155. }
  156. }
  157. }
  158. .ZH1main2 {
  159. position: absolute;
  160. bottom: 8px;
  161. left: 0;
  162. width: 100%;
  163. height: 46px;
  164. display: flex;
  165. align-items: center;
  166. .back1 {
  167. position: relative;
  168. #BtnRight {
  169. top: 0;
  170. left: 0;
  171. bottom: 0;
  172. right: 0;
  173. position: relative;
  174. width: 46px;
  175. height: 46px;
  176. }
  177. }
  178. // 相关文物
  179. .ZH1main2rr {
  180. margin-left: 10px;
  181. height: 36px;
  182. width: calc(100% - 60px);
  183. display: flex;
  184. align-items: center;
  185. justify-content: space-between;
  186. .ZH1main2rr1 {
  187. color: #eacf60;
  188. font-weight: 700;
  189. width: 82px;
  190. }
  191. .ZH1main2rr2 {
  192. width: calc(100% - 82px);
  193. height: 100%;
  194. overflow: auto;
  195. white-space: nowrap;
  196. &::-webkit-scrollbar {
  197. display: none;
  198. }
  199. .ZH1main2rr2Row {
  200. margin: 0 8px;
  201. cursor: pointer;
  202. width: auto;
  203. height: 36px;
  204. line-height: 34px;
  205. padding: 0 10px;
  206. color: #fffddc;
  207. display: inline-block;
  208. border: 1px solid #fffddc;
  209. border-radius: 20px;
  210. transition: all 0.3s;
  211. background-color: rgba(0, 0, 0, 0.4);
  212. &:nth-of-type(1) {
  213. margin-left: 0;
  214. }
  215. &:hover {
  216. background-color: #eacf60;
  217. border-color: transparent;
  218. color: #a55b41;
  219. }
  220. }
  221. .ZH1main2rr2RowAc {
  222. background-color: #eacf60;
  223. border-color: transparent;
  224. color: #a55b41;
  225. }
  226. }
  227. }
  228. }
  229. }
  230. }
  231. .ZHrr {
  232. width: 40%;
  233. }
  234. // -----------------三级信息
  235. .ZH1main1Son {
  236. width: 100%;
  237. max-height: 100%;
  238. overflow: auto;
  239. &::-webkit-scrollbar {
  240. display: none;
  241. }
  242. // 模型 视频
  243. .H2model {
  244. width: 100%;
  245. height: 200px;
  246. .H2modelSon {
  247. iframe {
  248. width: 100%;
  249. height: 100%;
  250. }
  251. }
  252. video {
  253. object-fit: contain !important;
  254. width: 100%;
  255. height: 100%;
  256. }
  257. }
  258. }
  259. // 屏幕>=1200
  260. @media screen and (min-width: 1200px) {
  261. .ZHll {
  262. // .h2Titele {
  263. // font-size: 24px;
  264. // }
  265. .ZH1main {
  266. .ZH1main1 {
  267. // 一级介绍
  268. .ZH1txt {
  269. h3 {
  270. font-size: 12px;
  271. }
  272. p {
  273. font-size: 10px;
  274. line-height: 20px;
  275. }
  276. }
  277. }
  278. // 二级
  279. .ZH1main1 {
  280. .ZH1_2 {
  281. .ZH1_2ll {
  282. .ZH1_2llRow {
  283. font-size: 10px;
  284. }
  285. }
  286. .ZH1_2rr {
  287. p {
  288. font-size: 9px;
  289. line-height: 18px;
  290. }
  291. }
  292. }
  293. }
  294. }
  295. }
  296. .ZH1main2rr1 {
  297. font-size: 12px !important;
  298. width: 60px !important;
  299. }
  300. .ZHll .ZH1main .ZH1main2 .ZH1main2rr .ZH1main2rr2 {
  301. width: calc(100% - 60px);
  302. height: 24px;
  303. .ZH1main2rr2Row {
  304. height: 24px;
  305. line-height: 22px;
  306. font-size: 12px;
  307. }
  308. }
  309. #BtnRight {
  310. left: 8px !important;
  311. width: 38px !important;
  312. height: 38px !important;
  313. }
  314. }
  315. }
  316. }