新版梦工厂手机端官网
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.

88 lines
1.9 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. <template>
  2. <div class="bottom_container">
  3. <div class="online">
  4. <img class="img1" :src="A1" alt="" />
  5. <span class="text1">在线咨询</span>
  6. </div>
  7. <div class="phone">
  8. <div class="box">
  9. <img class="img3" :src="A2" alt="" />
  10. <span class="text2">拨打电话</span>
  11. </div>
  12. </div>
  13. <div class="online">
  14. <img class="img2" :src="A3" alt="" /> <span class="text1">添加微信</span>
  15. </div>
  16. </div>
  17. </template>
  18. <script setup>
  19. import A1 from '@/static/img/bottom/kefu.png'
  20. import A2 from '@/static/img/bottom/phone.png'
  21. import A3 from '@/static/img/bottom/wechat.png'
  22. </script>
  23. <style lang="scss" scoped>
  24. .bottom_container {
  25. position: fixed;
  26. bottom: 0;
  27. left: 0;
  28. right: 0;
  29. height: $bottom-height;
  30. background: #ffa18e;
  31. z-index: 100;
  32. display: flex;
  33. box-sizing: border-box;
  34. align-items: center;
  35. justify-content: space-between;
  36. padding: 0 35px;
  37. .online {
  38. display: flex;
  39. align-items: center;
  40. white-space: nowrap;
  41. box-sizing: border-box;
  42. .img1 {
  43. width: 14px;
  44. height: 14px;
  45. margin-right: 6px;
  46. }
  47. .img2 {
  48. width: 16px;
  49. height: 13px;
  50. margin-right: 6px;
  51. }
  52. .text1 {
  53. font-size: 9px;
  54. font-family: Alibaba PuHuiTi;
  55. font-weight: 400;
  56. color: #ffffff;
  57. }
  58. }
  59. .phone {
  60. flex: 1;
  61. display: flex;
  62. align-items: center;
  63. justify-content: center;
  64. .box {
  65. width: 110px;
  66. height: $bottom-height;
  67. background: linear-gradient(90deg, #f98222, #f94622);
  68. border-radius: 16px;
  69. display: flex;
  70. align-items: center;
  71. .img3 {
  72. width: 24px;
  73. height: 24px;
  74. margin-left: 4px;
  75. margin-right: 11px;
  76. }
  77. .text2 {
  78. font-size: 13px;
  79. font-family: Alibaba PuHuiTi;
  80. font-weight: 500;
  81. color: #ffffff;
  82. }
  83. }
  84. }
  85. }
  86. </style>