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.

95 lines
2.2 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
2 years ago
2 years ago
2 years ago
  1. <template>
  2. <div class="slide_two title_slide">
  3. <div class="main_content">
  4. <div
  5. class="big_title animate__animated animate__fadeInDown"
  6. id="slide_four_ani"
  7. >
  8. 复合型<span class="nobold">人才团队</span>
  9. </div>
  10. <div class="en">COMPOSITE TEAM</div>
  11. <div class="btn">跨学科技术专家全面助力产品研发</div>
  12. </div>
  13. <!-- <div class="backyuansu"></div> -->
  14. <div class="bottom_statement">Product Dreamworks</div>
  15. </div>
  16. </template>
  17. <script setup></script>
  18. <style lang="scss" scoped>
  19. .slide_two {
  20. width: 100%;
  21. overflow: hidden;
  22. height: 100%;
  23. background: url(../../../../../assets/img/banner/team/back2.gif) no-repeat;
  24. background-position: 100%;
  25. background-size: auto 100%;
  26. position: relative;
  27. .backyuansu {
  28. position: absolute;
  29. left: 0;
  30. bottom: 30px;
  31. width: 280px;
  32. height: 428px;
  33. background: url(../../../../../assets/img/banner/team/backyuansu.png)
  34. no-repeat;
  35. background-size: 100% 100%;
  36. }
  37. .main_content {
  38. position: absolute;
  39. left: 135px;
  40. top: 50%;
  41. transform: translateY(-50%);
  42. .big_title {
  43. font-size: 75px;
  44. font-family: Alibaba PuHuiTi;
  45. font-weight: bold;
  46. color: #ffffff;
  47. margin-bottom: 61px;
  48. .nobold {
  49. font-weight: 200;
  50. font-family: Alibaba-PuHuiTi-L;
  51. }
  52. }
  53. .en {
  54. font-size: 18px;
  55. font-family: 'ZonaPro';
  56. font-weight: 800;
  57. color: #ffffff;
  58. margin-bottom: 62px;
  59. }
  60. .btn {
  61. width: 523px;
  62. height: 67px;
  63. background: #ffffff;
  64. border-radius: 33px;
  65. font-size: 26px;
  66. font-family: Alibaba PuHuiTi;
  67. font-weight: 400;
  68. color: #2e42ff;
  69. display: flex;
  70. align-items: center;
  71. justify-content: center;
  72. letter-spacing: 2px;
  73. transition-property: all;
  74. transition-duration: 0.7s;
  75. animation-fill-mode: forwards;
  76. }
  77. .btn:hover {
  78. transform: scale(1.05);
  79. }
  80. }
  81. .bottom_statement {
  82. position: absolute;
  83. left: 87px;
  84. white-space: nowrap;
  85. bottom: 75px;
  86. font-size: 12px;
  87. font-family: 'ZonaPro';
  88. font-weight: 400;
  89. color: #ffffff;
  90. letter-spacing: 1px;
  91. }
  92. }
  93. </style>