index.module.scss 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. .A4Member {
  2. width: 100%;
  3. height: 100%;
  4. background-image: url('../../assets/img/A4_member_bg.jpg');
  5. background-size: 100% 100%;
  6. background-repeat: no-repeat;
  7. background-position: center center;
  8. .itemList {
  9. display: flex;
  10. flex-wrap: nowrap;
  11. height: 100%;
  12. overflow-x: auto;
  13. overflow-y: hidden;
  14. &::-webkit-scrollbar {
  15. display: none;
  16. }
  17. :global {
  18. .item {
  19. flex-shrink: 0;
  20. width: 23%;
  21. height: 100%;
  22. position: relative;
  23. .nameBox {
  24. margin-top: 7%;
  25. margin-left: 4%;
  26. width: 12%;
  27. height: fit-content;
  28. transition: opacity 0.3s ease;
  29. .up,
  30. .down {
  31. width: 100%;
  32. height: 3.5vh;
  33. transition: opacity 0.3s ease;
  34. &>img {
  35. width: 100%;
  36. height: 100%;
  37. object-fit: contain;
  38. }
  39. }
  40. .name {
  41. width: 100%;
  42. height: fit-content;
  43. text-align: center;
  44. font-weight: 700;
  45. font-size: 1.5vw;
  46. white-space: pre-line;
  47. color: rgba(195, 172, 153, 1);
  48. transition: color 0.35s ease, text-shadow 0.35s ease;
  49. text-shadow:
  50. 0 0 3px rgba(78, 47, 23, 0.9),
  51. 0 0 6px rgba(78, 47, 23, 0.7),
  52. 0 0 10px rgba(78, 47, 23, 0.5),
  53. 0 0 15px rgba(195, 172, 153, 0.4),
  54. 2px 2px 4px rgba(0, 0, 0, 0.6);
  55. }
  56. }
  57. .btnBox {
  58. position: absolute;
  59. bottom: 0;
  60. left: 0;
  61. transform: translate(72%, -56%);
  62. width: 5vw;
  63. height: 18vh;
  64. cursor: pointer;
  65. display: none;
  66. }
  67. .imgBox {
  68. position: absolute;
  69. right: 0;
  70. width: 100%;
  71. height: 50%;
  72. display: flex;
  73. flex-direction: column;
  74. gap: 1%;
  75. cursor: pointer;
  76. .imgWrap {
  77. position: relative;
  78. height: 100%;
  79. width: 100%;
  80. align-self: flex-end;
  81. img {
  82. position: absolute;
  83. top: 0;
  84. left: 0;
  85. height: 100%;
  86. width: auto;
  87. max-width: 100%;
  88. object-fit: contain;
  89. transition: opacity 0.35s ease, right 0.35s ease-out;
  90. }
  91. }
  92. .nameEn {
  93. width: 100%;
  94. text-align: end;
  95. padding-right: 2%;
  96. height: auto;
  97. font-size: 1.8vw;
  98. font-weight: bold;
  99. background: linear-gradient(180deg, #A56F2C 0%, #824E0F 41.35%, #4F310C 100%);
  100. background-clip: text;
  101. -webkit-text-fill-color: transparent;
  102. }
  103. }
  104. .imgBox1 {
  105. // bottom: 14%;
  106. transform: translateY(14%);
  107. .imgWrap{
  108. img{
  109. left: 56%;
  110. }
  111. }
  112. }
  113. .imgBox2 {
  114. // bottom: 20%;
  115. transform: translateY(-5%);
  116. .imgWrap{
  117. img{
  118. left: 54.6%;
  119. }
  120. }
  121. }
  122. .imgBox3 {
  123. // bottom: 14%;
  124. transform: translateY(20%);
  125. .imgWrap{
  126. img{
  127. left: 45%;
  128. }
  129. }
  130. }
  131. .imgBox4 {
  132. // bottom: 20%;
  133. transform: translateY(0);
  134. .imgWrap{
  135. img{
  136. left: 38%;
  137. }
  138. }
  139. }
  140. .imgBox5 {
  141. height: 58%;
  142. // bottom: 8%;
  143. transform: translateY(-5%);
  144. .imgWrap{
  145. img{
  146. left: 66.5%;
  147. }
  148. }
  149. }
  150. .imgBox6 {
  151. height: 58%;
  152. // bottom: 19%;
  153. transform: translateY(-24%);
  154. .imgWrap{
  155. img{
  156. left: 69%;
  157. }
  158. }
  159. }
  160. .imgBox7 {
  161. height: 62%;
  162. // bottom: 8%;
  163. transform: translateY(-8%);
  164. .imgWrap{
  165. img{
  166. left: 71%;
  167. }
  168. }
  169. }
  170. .imgBox8 {
  171. height: 40%;
  172. // bottom: 20%;
  173. transform: translateY(20%);
  174. .imgWrap{
  175. img{
  176. left: 23%;
  177. }
  178. }
  179. }
  180. .imgBox9 {
  181. transform: translateY(8%);
  182. .imgWrap {
  183. align-self: flex-start;
  184. width: 100%;
  185. img {
  186. left: 22%;
  187. }
  188. }
  189. }
  190. .imgBox10 {
  191. height: 22%;
  192. // bottom: 25%;
  193. transform: translateY(95%);
  194. .imgWrap{
  195. img{
  196. left: 43%;
  197. }
  198. }
  199. }
  200. }
  201. .itemAc{
  202. background: linear-gradient(rgba(255, 243, 197, 0.4), rgba(255, 243, 197, 0.6), rgba(255, 243, 197, 0.8));
  203. transition: background 0.35s ease;
  204. .nameBox {
  205. .name {
  206. width: 100%;
  207. height: fit-content;
  208. text-align: center;
  209. font-weight: 700;
  210. font-size: 1.5vw;
  211. color: rgba(255, 243, 197, 1);
  212. text-shadow:
  213. 0 0 3px rgba(78, 47, 23, 0.9),
  214. 0 0 6px rgba(78, 47, 23, 0.7),
  215. 0 0 10px rgba(78, 47, 23, 0.5),
  216. 0 0 15px rgba(195, 172, 153, 0.4),
  217. 2px 2px 4px rgba(0, 0, 0, 0.6);
  218. }
  219. }
  220. .btnBox {
  221. display: block;
  222. }
  223. }
  224. .imgShow {
  225. opacity: 1;
  226. pointer-events: auto;
  227. }
  228. .imgHide {
  229. opacity: 0;
  230. pointer-events: none;
  231. }
  232. .split {
  233. flex-shrink: 0;
  234. width: 0.3%;
  235. min-width: 2px;
  236. height: 100%;
  237. &>img {
  238. width: 100%;
  239. height: 100%;
  240. object-fit: contain;
  241. }
  242. }
  243. }
  244. }
  245. .videoBox {
  246. position: fixed;
  247. top: 0;
  248. left: 0;
  249. width: 100%;
  250. height: 100%;
  251. z-index: 100;
  252. }
  253. }