Footer.module.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /* 底部信息栏 */
  2. .root {
  3. flex: 1;
  4. height: 242px;
  5. display: flex;
  6. background-color: #13151A;
  7. color: white;
  8. text-align: center;
  9. justify-content: space-between;
  10. align-items: center;
  11. flex-direction: row;
  12. }
  13. .Container {
  14. flex: 1;
  15. display: flex;
  16. flex-direction: column;
  17. justify-content: space-between;
  18. align-items: flex-start;
  19. padding: 0 255px;
  20. gap: 23px;
  21. }
  22. .contactUs {
  23. font-size: 40px;
  24. font-weight: normal;
  25. }
  26. .item {
  27. display: flex;
  28. justify-content: start;
  29. align-items: center;
  30. flex-direction: row;
  31. }
  32. .locationIcon {
  33. object-fit: contain;
  34. width: 19px;
  35. height: 25px;
  36. }
  37. .leftFont {
  38. font-size: 24px;
  39. font-weight: normal;
  40. margin-left: 14px;
  41. }
  42. .bottomContainer {
  43. display: flex;
  44. flex-direction: row;
  45. align-items: flex-end;
  46. justify-content: space-between;
  47. width: 100%;
  48. }
  49. .email {
  50. object-fit: contain;
  51. width: 26px;
  52. height: 18px;
  53. }
  54. .rightFont {
  55. margin-left: 8px;
  56. font-size: 16px;
  57. font-weight: normal;
  58. }
  59. .code {
  60. width: 109px;
  61. height: 109px;
  62. }
  63. .weixinContainer {
  64. display: flex;
  65. justify-content: start;
  66. align-items: center;
  67. flex-direction: row;
  68. position: relative;
  69. }
  70. .popContainer {
  71. position: absolute;
  72. bottom: 50px;
  73. right: 0px;
  74. background-color: white;
  75. border: 1px solid #ccc;
  76. border-radius: 8px;
  77. box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  78. opacity: 0;
  79. visibility: hidden;
  80. transition: opacity 0.3s ease;
  81. display: flex;
  82. justify-content: center;
  83. align-items: center;
  84. }
  85. .weixinContainer:hover .popContainer {
  86. opacity: 1;
  87. visibility: visible;
  88. }