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.
|
|
<template> <div class="slide_two title_slide"> <div class="main_content"> <img v-lazy="HeaderPng" alt="" class="main_png" /> <div class="big_title animate__animated animate__fadeInDown" id="slide_two_ani" > 理论结合实践 </div> <div class="btn"> 专注基础科学<span class="point"> · </span>培养百名专家团队 </div> </div> <div class="bottom_statement">Product Dreamworks</div> </div> </template>
<script setup> import HeaderPng from '@/assets/img/banner/lilun/biaotitubiao.png' </script>
<style lang="scss" scoped> .slide_two { width: 100%; overflow: hidden; height: 100%; background: url(../../../../../assets/img/banner/lilun/back1.png) no-repeat; background-position: 100%; background-size: auto 100%; position: relative; .main_content { position: absolute; left: 111px; top: 50%; transform: translateY(-50%); .main_png { width: 151px; height: 55px; } .big_title { margin-top: 50px; margin-bottom: 57px; font-size: 100px; font-family: Alibaba PuHuiTi; font-weight: bold; color: #000000; letter-spacing: 40; } .btn { width: 473px; height: 67px; background: linear-gradient(90deg, #4e0cf5, #283fe7); border-radius: 33px; font-size: 26px; font-family: Alibaba PuHuiTi; font-weight: 400; color: #ffffff; display: flex; align-items: center; justify-content: center; transition-property: all; transition-duration: 0.7s; animation-fill-mode: forwards; .point { font-size: 60px; margin: 0 6px; } } .btn:hover { transform: scale(1.05); } } .bottom_statement { position: absolute; white-space: nowrap; left: 87px; bottom: 75px; width: 165px; height: 11px; font-size: 12px; font-family: 'ZonaPro'; font-weight: 400; color: #646a73; letter-spacing: 1px; } } </style>
|