ai_rabit_component.vue 782 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <template>
  2. <div class="ai_rabit_component">
  3. <div class="ai-rabit">
  4. <img src="@/assets/images/wakeup/ai-rabit.png"/>
  5. </div>
  6. <!-- </div>-->
  7. </div>
  8. </template>
  9. <script setup>
  10. import {ref, onMounted, onUnmounted} from 'vue';
  11. onMounted(() => {
  12. });
  13. </script>
  14. <style scoped lang="scss">
  15. .ai_rabit_component{
  16. position: absolute;
  17. right: 0px;
  18. bottom: 20px;
  19. .ai-rabit{
  20. border: 1px solid;
  21. display: flex;
  22. align-items: center;
  23. .ai-rabit-text{
  24. width: 345px;
  25. height: 89px;
  26. background: #E8EEF7;
  27. font-weight: 300;
  28. margin-bottom: 20px;
  29. font-size: 22px;
  30. color: #000000;
  31. padding:16px;
  32. border-radius: 24px 24px 24px 24px;
  33. }
  34. img{
  35. width: 178px;
  36. height: 270px;
  37. }
  38. }
  39. }
  40. </style>