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.

88 lines
2.0 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
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. <img v-lazy="HeaderPng" alt="" class="main_png" />
  5. <div
  6. class="big_title animate__animated animate__fadeInDown"
  7. id="slide_two_ani"
  8. >
  9. 理论结合实践
  10. </div>
  11. <div class="btn">
  12. 专注基础科学<span class="point"> · </span>培养百名专家团队
  13. </div>
  14. </div>
  15. <div class="bottom_statement">Product Dreamworks</div>
  16. </div>
  17. </template>
  18. <script setup>
  19. import HeaderPng from '@/assets/img/banner/lilun/biaotitubiao.png'
  20. </script>
  21. <style lang="scss" scoped>
  22. .slide_two {
  23. width: 100%;
  24. overflow: hidden;
  25. height: 100%;
  26. background: url(../../../../../assets/img/banner/lilun/back1.png) no-repeat;
  27. background-position: 100%;
  28. background-size: auto 100%;
  29. position: relative;
  30. .main_content {
  31. position: absolute;
  32. left: 111px;
  33. top: 50%;
  34. transform: translateY(-50%);
  35. .main_png {
  36. width: 151px;
  37. height: 55px;
  38. }
  39. .big_title {
  40. margin-top: 50px;
  41. margin-bottom: 57px;
  42. font-size: 100px;
  43. font-family: Alibaba PuHuiTi;
  44. font-weight: bold;
  45. color: #000000;
  46. letter-spacing: 40;
  47. }
  48. .btn {
  49. width: 473px;
  50. height: 67px;
  51. background: linear-gradient(90deg, #4e0cf5, #283fe7);
  52. border-radius: 33px;
  53. font-size: 26px;
  54. font-family: Alibaba PuHuiTi;
  55. font-weight: 400;
  56. color: #ffffff;
  57. display: flex;
  58. align-items: center;
  59. justify-content: center;
  60. transition-property: all;
  61. transition-duration: 0.7s;
  62. animation-fill-mode: forwards;
  63. .point {
  64. font-size: 60px;
  65. margin: 0 6px;
  66. }
  67. }
  68. .btn:hover {
  69. transform: scale(1.05);
  70. }
  71. }
  72. .bottom_statement {
  73. position: absolute;
  74. white-space: nowrap;
  75. left: 87px;
  76. bottom: 75px;
  77. width: 165px;
  78. height: 11px;
  79. font-size: 12px;
  80. font-family: 'ZonaPro';
  81. font-weight: 400;
  82. color: #646a73;
  83. letter-spacing: 1px;
  84. }
  85. }
  86. </style>