44 lines
691 B
SCSS
44 lines
691 B
SCSS
page {
|
|
font-size: 10px;
|
|
}
|
|
|
|
.index {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100vh;
|
|
|
|
.swiper {
|
|
background-color: white;
|
|
}
|
|
|
|
.container {
|
|
z-index: 1;
|
|
position: absolute;
|
|
top: 260px;
|
|
background-color: white;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
padding: 10px;
|
|
text-align: center;
|
|
border-top-left-radius: 20px;
|
|
border-top-right-radius: 20px;
|
|
|
|
.btn {
|
|
margin: 20px auto;
|
|
padding: 10px;
|
|
border-radius: 50px;
|
|
background-color: #7950f2;
|
|
color: #fff;
|
|
width: 300px;
|
|
text-align: center;
|
|
border: 1px solid #f5f5f5;
|
|
|
|
}
|
|
}
|
|
}
|
|
.text {
|
|
padding: 10px;
|
|
font-size: 30px;
|
|
text-align: left;
|
|
}
|