做专业的水下设备制造商 旁站
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.

118 lines
3.1 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
  1. <template>
  2. <div class="relative_merits_container">
  3. <HeadLine
  4. title="优缺点对比"
  5. line1="根据一线工程师的使用感受,设计的产品,易用性很高"
  6. />
  7. <div class="card_container">
  8. <div class="card left">
  9. <div class="btn new_btn">新型设计</div>
  10. <img :src="Pic2" alt="img" class="img1" />
  11. <Info
  12. :isYes="true"
  13. info="根据一线工程师的使用感受,设计的产品,易用性很高"
  14. />
  15. <Info
  16. :isYes="true"
  17. info="根据一线工程师的使用感受,设计的产品,易用性很高"
  18. />
  19. <Info
  20. :isYes="true"
  21. info="根据一线工程师的使用感受,设计的产品,易用性很高"
  22. />
  23. <Info
  24. :isYes="true"
  25. info="根据一线工程师的使用感受,设计的产品,易用性很高"
  26. />
  27. <Info
  28. :isYes="true"
  29. info="根据一线工程师的使用感受,设计的产品,易用性很高"
  30. />
  31. </div>
  32. <div class="card right">
  33. <div class="btn old_btn">传统设计</div>
  34. <img :src="Pic1" alt="img" class="img2" />
  35. <Info
  36. :isYes="false"
  37. info="根据一线工程师的使用感受,设计的产品,易用性很高"
  38. />
  39. <Info
  40. :isYes="false"
  41. info="根据一线工程师的使用感受,设计的产品,易用性很高"
  42. />
  43. <Info
  44. :isYes="false"
  45. info="根据一线工程师的使用感受,设计的产品,易用性很高"
  46. />
  47. <Info
  48. :isYes="false"
  49. info="根据一线工程师的使用感受,设计的产品,易用性很高"
  50. />
  51. <Info
  52. :isYes="false"
  53. info="根据一线工程师的使用感受,设计的产品,易用性很高"
  54. />
  55. </div>
  56. </div>
  57. </div>
  58. </template>
  59. <script setup>
  60. import HeadLine from '../HeadLine'
  61. import Pic1 from '@/static/img/zhongxin/duibi1.png'
  62. import Pic2 from '@/static/img/zhongxin/duibi2.png'
  63. import Info from './Info'
  64. </script>
  65. <style lang="scss" scoped>
  66. .relative_merits_container {
  67. padding: 90px 0 0 0;
  68. margin: 0 auto;
  69. .card_container {
  70. width: 76vw;
  71. margin: 0 auto;
  72. margin-top: 90px;
  73. position: relative;
  74. display: flex;
  75. .card {
  76. flex: 1;
  77. padding: 44px 67px 67px 67px;
  78. display: flex;
  79. flex-direction: column;
  80. align-items: center;
  81. .btn {
  82. width: 217px;
  83. height: 55px;
  84. border-radius: 28px;
  85. display: flex;
  86. align-items: center;
  87. justify-content: center;
  88. font-size: 22px;
  89. font-weight: 500;
  90. color: #ffffff;
  91. margin-bottom: 65px;
  92. }
  93. .img2 {
  94. width: 500px;
  95. height: 365px;
  96. }
  97. .img1 {
  98. width: 580px;
  99. height: 365px;
  100. }
  101. .new_btn {
  102. background: $btn-gradient;
  103. }
  104. .old_btn {
  105. background: #cbcbcb;
  106. }
  107. }
  108. .left {
  109. background: #f6f6f6;
  110. }
  111. .right {
  112. background: #f1f1f1;
  113. }
  114. }
  115. }
  116. </style>