index.module.scss 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. .A4base {
  2. position: relative;
  3. top: 50%;
  4. left: 50%;
  5. transform: translate(-50%, -50%);
  6. z-index: 99999;
  7. width: 100%;
  8. height: 100%;
  9. transition: all 0.5s;
  10. background: url('./image/bg.png') repeat center center;
  11. // background-size: 100% 100%;
  12. > div {
  13. position: absolute;
  14. top: 50%;
  15. left: 50%;
  16. img {
  17. object-fit: contain;
  18. width: 100%;
  19. height: 100%;
  20. }
  21. }
  22. :global {
  23. .A4base-title3 {
  24. transform: translate(-50%, -420px);
  25. width: 1728px;
  26. height: 50px;
  27. }
  28. .A4base-logo {
  29. transform: translate(-865px, -350px);
  30. width: 100px;
  31. height: 150px;
  32. }
  33. .A4base-content {
  34. width: 1150px;
  35. height: 500px;
  36. display: flex;
  37. flex-direction: column;
  38. justify-content: center;
  39. align-items: center;
  40. transform: translate(-90%, -325px);
  41. .A4base-title2 {
  42. width: 68%;
  43. height: 100%;
  44. }
  45. .A4base-title1 {
  46. width: 100%;
  47. height: 100%;
  48. }
  49. .A4base-other {
  50. width: 78%;
  51. height: 100%;
  52. }
  53. }
  54. .A4base-pic1 {
  55. transform: translate(-80px, 0px);
  56. width: 200px;
  57. }
  58. .A4base-pic2 {
  59. transform: translate(-860px, -430px);
  60. width: 150px;
  61. }
  62. .A4base-pic3 {
  63. transform: translate(-230px, -205px);
  64. width: 70px;
  65. }
  66. .A4base-pic4 {
  67. transform: translateX(-647px);
  68. width: 325px;
  69. top: 0;
  70. }
  71. .A4base-pic5 {
  72. transform: translate(-78px, -333px);
  73. width: 830px;
  74. }
  75. .A4base-button {
  76. transform: translate(-575px, 250px);
  77. width: 175px;
  78. cursor: pointer;
  79. }
  80. }
  81. }