hjyd的手机端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
1.3 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. <template>
  2. <div class="contact_container">
  3. <div class="company_img">
  4. <div class="mask">
  5. <div class="logo_wrap">产品梦工厂</div>
  6. </div>
  7. </div>
  8. <div class="contact_info">
  9. <div class="card"></div>
  10. </div>
  11. <div class="map_title">如何找到我们</div>
  12. <div class="map_container"></div>
  13. </div>
  14. </template>
  15. <script setup></script>
  16. <style lang="scss" scoped>
  17. .contact_container {
  18. .company_img {
  19. width: 100%;
  20. height: 235px;
  21. position: relative;
  22. .mask {
  23. position: absolute;
  24. left: 0;
  25. top: 0;
  26. width: 100%;
  27. height: 100%;
  28. background: rgba(40, 63, 231, 0.66);
  29. display: flex;
  30. align-items: center;
  31. justify-content: center;
  32. .logo_wrap {
  33. display: flex;
  34. align-items: center;
  35. }
  36. }
  37. }
  38. .contact_info {
  39. display: grid;
  40. grid-template-columns: repeat(2, 1fr);
  41. grid-template-rows: repeat(2, 1fr);
  42. .card {
  43. width: 100%;
  44. height: 146px;
  45. background: #c0c5ef;
  46. display: flex;
  47. align-items: center;
  48. justify-content: center;
  49. }
  50. }
  51. .map_title {
  52. display: flex;
  53. align-items: center;
  54. justify-content: center;
  55. height: 108px;
  56. }
  57. .map_container {
  58. width: 100%;
  59. height: 110vw;
  60. background: #000;
  61. }
  62. }
  63. </style>