2026-04-09 17:21:35 +00:00
|
|
|
<style scoped>
|
|
|
|
|
.banner {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
.banner-container {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 100%;
|
|
|
|
|
background-color: #f76436;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
@include media-breakpoint-up(xs) {
|
|
|
|
|
.banner {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@include media-breakpoint-up(xl) {
|
|
|
|
|
.banner {
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|
2026-04-03 18:50:23 +00:00
|
|
|
<template>
|
|
|
|
|
<section class="py-2 bg-primary text-white">
|
|
|
|
|
<div class="banner-container d-flex justify-content-center">
|
|
|
|
|
<img class="banner" src="/static/img/rmo/banner.jpg" />
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
</template>
|