index.module.scss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. .Intro {
  2. width: 100%;
  3. height: 100%;
  4. display: flex;
  5. flex-direction: column;
  6. gap: 10px;
  7. padding: 0 20px;
  8. background: url(../../../../assets/img/intro_bg.png) no-repeat center center;
  9. background-size: 100% 100%;
  10. padding-top: 30px;
  11. overflow-y: auto;
  12. &::-webkit-scrollbar {
  13. width: 0px;
  14. }
  15. :global {
  16. .titleLogo {
  17. width: 120px;
  18. height: 60px;
  19. & > img {
  20. height: 100%;
  21. object-fit: contain;
  22. }
  23. }
  24. .info {
  25. width: 100%;
  26. height: fit-content;
  27. display: flex;
  28. gap: 10px;
  29. color: #fff;
  30. &:last-child {
  31. margin-bottom: 15px;
  32. }
  33. .label {
  34. position: relative;
  35. height: fit-content;
  36. font-size: 16px;
  37. font-weight: bold;
  38. white-space: nowrap;
  39. width: 40px;
  40. &::after {
  41. content: '';
  42. width: 28px;
  43. height: 4px;
  44. position: absolute;
  45. z-index: -1;
  46. top: 50%;
  47. left: 50%;
  48. transform: translate(-57%, 147%);
  49. background-color: rgba(124, 75, 54, 1);
  50. }
  51. }
  52. .content {
  53. width: calc(100% - 40px);
  54. color: rgba(255, 255, 255, 1);
  55. font-size: 16px;
  56. text-align: justify;
  57. }
  58. }
  59. }
  60. }
  61. // --------英文版-----
  62. .IntroEn {
  63. :global {
  64. .titleLogo {
  65. width: auto;
  66. height: 24px;
  67. }
  68. .info {
  69. .label {
  70. width: 84px;
  71. text-align: center;
  72. }
  73. .content {
  74. width: calc(100% - 84px);
  75. text-align: start;
  76. }
  77. }
  78. }
  79. }