65 lines
1.2 KiB
SCSS
65 lines
1.2 KiB
SCSS
@use "~@/scss/images.scss" as img;
|
|
|
|
.container {
|
|
width: 100%;
|
|
padding: 20px;
|
|
box-sizing: border-box;
|
|
|
|
.title {
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
font-family: Arial, sans-serif;
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
color: #333;
|
|
}
|
|
|
|
.content {
|
|
width: 100%;
|
|
height: 300px;
|
|
background-color: #f9f9f9;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
.image {
|
|
/* width: 200px; */
|
|
/* height: 200px; */
|
|
/* object-fit: cover; */
|
|
}
|
|
|
|
.description {
|
|
padding: 10px;
|
|
box-sizing: border-box;
|
|
font-size: 16px;
|
|
color: #666;
|
|
}
|
|
}
|
|
.button {
|
|
position: fixed;
|
|
bottom: 20px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 200px;
|
|
height: 50px;
|
|
background-color: #007bff;
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
font-family: Arial, sans-serif;
|
|
text-align: center;
|
|
line-height: 50px;
|
|
transition: background-color 0.3s ease;
|
|
|
|
&:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
}
|
|
}
|