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.

92 lines
2.1 KiB

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="cooperation_container">
  3. <div class="empty"></div>
  4. <div class="contract_title">
  5. <p class="line"></p>
  6. <p class="title">合作<span class="blue_font">客户</span></p>
  7. <p class="detail">互联网公司 生产制造公司 智能硬件公司</p>
  8. <img class="img" :src="Back" alt="back" />
  9. </div>
  10. <div class="contract">
  11. <div class="real_img"></div>
  12. </div>
  13. </div>
  14. </template>
  15. <script setup>
  16. import Back from '@/assets/img/hezuo/biaotiback.png'
  17. </script>
  18. <style scoped lang="scss">
  19. .cooperation_container {
  20. width: 100%;
  21. min-width: 1560px;
  22. height: 100%;
  23. background: $common_bg;
  24. display: flex;
  25. flex-direction: column;
  26. justify-content: space-between;
  27. .empty {
  28. min-height: 90px;
  29. }
  30. .contract_title {
  31. display: flex;
  32. align-items: center;
  33. justify-content: center;
  34. flex-direction: column;
  35. font-family: 'SourceHanSans';
  36. background-size: 100% 100%;
  37. padding: 89px;
  38. box-sizing: border-box;
  39. position: relative;
  40. white-space: nowrap;
  41. transform-style: preserve-3d;
  42. .line {
  43. width: 39px;
  44. height: 5px;
  45. background: #283fe7;
  46. border-radius: 3px;
  47. margin-bottom: 12px;
  48. }
  49. .img {
  50. position: absolute;
  51. top: 50%;
  52. left: 50%;
  53. transform: translateX(-50%) translateY(-50%) translateZ(-1px);
  54. width: 543px;
  55. height: 61px;
  56. }
  57. .title {
  58. font-size: 30px;
  59. font-weight: bold;
  60. color: #000000;
  61. margin-bottom: 21px;
  62. .blue_font {
  63. color: $theme_color;
  64. }
  65. }
  66. .detail {
  67. font-size: 18px;
  68. font-weight: 300;
  69. color: #646a73;
  70. }
  71. }
  72. .contract {
  73. flex: 1;
  74. padding: 62px 149px;
  75. box-sizing: border-box;
  76. display: flex;
  77. background: url(../../../../assets/img/hezuo/back.png);
  78. background-size: 100% 100%;
  79. object-fit: contain;
  80. align-items: center;
  81. justify-content: center;
  82. .real_img {
  83. width: 100%;
  84. height: 100%;
  85. background: url(../../../../assets/img/hezuo/all.png);
  86. background-size: 100% 100%;
  87. }
  88. }
  89. }
  90. </style>