index.module.scss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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(-50%, -280px);
  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(650px, -70px);
  56. width: 202px;
  57. height: 316px;
  58. }
  59. .A4base-pic2 {
  60. transform: translate(-50%, 50%);
  61. width: 1920px;
  62. height: 325px;
  63. }
  64. .A4base-button {
  65. transform: translate(-50%, 345px);
  66. width: 164px;
  67. height: 41px;
  68. cursor: pointer;
  69. }
  70. }
  71. }