42 lines
682 B
SCSS
42 lines
682 B
SCSS
.detailModal {
|
|
position: relative;
|
|
width: calc(100vw - 50px);
|
|
max-width: 363px;
|
|
padding: 32px 29px 42px;
|
|
background-color: #fff;
|
|
box-sizing: border-box;
|
|
.closeIcon {
|
|
position: absolute;
|
|
top: 18px;
|
|
right: 21px;
|
|
width: 17px;
|
|
height: 17px;
|
|
}
|
|
.detailContent {
|
|
.title {
|
|
color: #333333;
|
|
font-size: 28px;
|
|
font-weight: 700;
|
|
line-height: 41px;
|
|
}
|
|
.desc {
|
|
margin-top: 8px;
|
|
color: #999999;
|
|
font-size: 14px;
|
|
line-height: 14px;
|
|
}
|
|
.steps {
|
|
margin-top: 27px;
|
|
::v-deep .uni-steps__column-title {
|
|
font-weight: 500;
|
|
color: #333333 !important;
|
|
}
|
|
}
|
|
.startNow {
|
|
margin-top: -17px;
|
|
height: 40px;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
}
|