index.vue 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <template>
  2. <div class="aboutThePark">
  3. <div class="whiteBoard">
  4. <img src="../housingResources/testImg.png" class="testImg">
  5. <div class="info">
  6. XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  7. XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  8. XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  9. </div>
  10. </div>
  11. <div class="whiteBoard">
  12. <div class="detailLi">
  13. <span class="liName">
  14. <span class="callName">招商电话:</span>
  15. <span class="callNumber">0510-680**808</span>
  16. </span>
  17. <img src="https://www.idea-co-sf.com/gardenProduct/image/phoneIcon.png" class="phoneIcon">
  18. </div>
  19. </div>
  20. </div>
  21. </template>
  22. <script>
  23. export default {
  24. name: "index"
  25. }
  26. </script>
  27. <style lang="scss">
  28. .aboutThePark{
  29. .whiteBoard{
  30. background: white;
  31. margin: 24rpx 0;
  32. padding: 24rpx;
  33. .testImg{
  34. width: 686rpx;
  35. height: 300rpx;
  36. }
  37. .info{
  38. color: #333333;
  39. font-size: 28rpx;
  40. line-height: 42rpx;
  41. margin: 24rpx 0;
  42. word-wrap: break-word;
  43. }
  44. .detailLi{
  45. display: flex;
  46. justify-content: space-between;
  47. align-items: center;
  48. .liInfo{
  49. display: inline-block;
  50. text-align: right;
  51. max-width: 428rpx;
  52. color: rgba(102, 102, 102, 1);
  53. font-size: 32rpx;
  54. line-height: 38rpx;
  55. overflow: hidden;
  56. word-wrap: break-word;
  57. }
  58. .callNumber{
  59. color: rgba(24, 23, 42, 1);
  60. font-size: 36rpx;
  61. font-weight: 600;
  62. }
  63. .callName{
  64. color: rgba(102, 102, 102, 1);
  65. font-size: 28rpx;
  66. }
  67. .phoneIcon{
  68. width: 64rpx;
  69. height: 64rpx;
  70. }
  71. }
  72. }
  73. }
  74. </style>