33 lines
543 B
SCSS
33 lines
543 B
SCSS
.not-container {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
.not-img {
|
|
margin-right: 120px;
|
|
}
|
|
.not-detail {
|
|
display: flex;
|
|
flex-direction: column;
|
|
h2,
|
|
h4 {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
h2 {
|
|
font-size: 60px;
|
|
color: var(--el-text-color-primary);
|
|
}
|
|
h4 {
|
|
margin: 30px 0 20px;
|
|
font-size: 19px;
|
|
font-weight: normal;
|
|
color: var(--el-text-color-regular);
|
|
}
|
|
.el-button {
|
|
width: 100px;
|
|
}
|
|
}
|
|
}
|