126 lines
1.9 KiB
SCSS
126 lines
1.9 KiB
SCSS
.text-red {
|
|
color: red;
|
|
}
|
|
|
|
.data {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
background-color: #fff;
|
|
padding: 10px;
|
|
|
|
.pagination {
|
|
margin: 10px auto;
|
|
}
|
|
}
|
|
|
|
.tag {
|
|
width: 100%;
|
|
padding: 5px 8px;
|
|
color: white;
|
|
border-radius: 8px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.success {
|
|
color: #4fc08d;
|
|
}
|
|
|
|
.danger {
|
|
color: #df3526;
|
|
}
|
|
|
|
.warning {
|
|
color: #f3812e;
|
|
}
|
|
|
|
.image {
|
|
width: 50px;
|
|
height: 50px;
|
|
}
|
|
|
|
.card {
|
|
margin: 20px auto;
|
|
background-image: url('https://p0.meituan.net/csc/902ecf4ba9765a8200817d58a3a5a655172781.png');
|
|
background-size: 100% 100%;
|
|
width: 95%;
|
|
height: 250px;
|
|
border-radius: 15px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
|
|
.container {
|
|
color: #fff;
|
|
padding: 45px 100px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
|
|
.line {
|
|
width: 1px;
|
|
height: 50px;
|
|
background-color: #ff9c9c;
|
|
}
|
|
}
|
|
|
|
.footer {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
color: #8a1717;
|
|
border-bottom-left-radius: 15px;
|
|
border-bottom-right-radius: 15px;
|
|
background-color: rgba(255, 255, 255, 0.2);
|
|
padding: 10px 30px;
|
|
height: 150px;
|
|
}
|
|
}
|
|
|
|
.formCard {
|
|
width: 95%;
|
|
margin: auto;
|
|
border-radius: 20px;
|
|
background-color: #fff;
|
|
padding: 20px;
|
|
|
|
--nut-cell-box-shadow: none;
|
|
--nut-cell-padding: 10px 5px;
|
|
}
|
|
|
|
.nut-button {
|
|
border-radius: 20px;
|
|
border: none;
|
|
}
|
|
|
|
.title {
|
|
margin: 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.title-line {
|
|
width: 8px;
|
|
height: 35px;
|
|
background-color: #df3526;
|
|
border-radius: 20px;
|
|
margin-right: 10px;
|
|
}
|
|
}
|
|
|
|
.list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: #333333;
|
|
|
|
.item {
|
|
width: 95%;
|
|
background-color: #fff;
|
|
margin-bottom: 10px;
|
|
border-radius: 15px;
|
|
padding: 25px;
|
|
}
|
|
}
|