124 lines
2.4 KiB
SCSS
124 lines
2.4 KiB
SCSS
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding-bottom: 40px;
|
|
|
|
.button {
|
|
width: 100%;
|
|
padding: 20px 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: #000;
|
|
text-align: center;
|
|
font-feature-settings:
|
|
"liga" off,
|
|
"clig" off;
|
|
font-family: "PingFang SC";
|
|
font-size: 16px;
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
line-height: 20px;
|
|
|
|
&:last-child {
|
|
border-top: 8px solid #f5f5f5;
|
|
}
|
|
}
|
|
}
|
|
|
|
.centerContainer {
|
|
overflow: hidden;
|
|
.title {
|
|
padding-top: 24px;
|
|
color: #000;
|
|
text-align: center;
|
|
font-feature-settings:
|
|
"liga" off,
|
|
"clig" off;
|
|
font-family: "PingFang SC";
|
|
font-size: 16px;
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
line-height: 20px;
|
|
}
|
|
|
|
.content {
|
|
padding: 24px 20px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
.tips {
|
|
color: rgba(60, 60, 67, 0.6);
|
|
font-feature-settings:
|
|
"liga" off,
|
|
"clig" off;
|
|
font-family: "PingFang SC";
|
|
font-size: 16px;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
line-height: 24px;
|
|
}
|
|
|
|
.cancelReason {
|
|
width: 100%;
|
|
margin-top: 8px;
|
|
padding: 8px;
|
|
border-radius: 4px;
|
|
background: #f0f0f0;
|
|
|
|
.input {
|
|
width: 100%;
|
|
&:placeholder-shown {
|
|
color: rgba(60, 60, 67, 0.3);
|
|
font-feature-settings:
|
|
"liga" off,
|
|
"clig" off;
|
|
font-family: "PingFang SC";
|
|
font-size: 14px;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
line-height: 24px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.actions {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
height: 44px;
|
|
border-top: 0.5px solid #cecece;
|
|
background: #fff;
|
|
margin-top: 2px;
|
|
|
|
.confirm,
|
|
.cancel {
|
|
width: 50%;
|
|
height: 44px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: #000;
|
|
text-align: center;
|
|
font-feature-settings:
|
|
"liga" off,
|
|
"clig" off;
|
|
font-family: "PingFang SC";
|
|
font-size: 16px;
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
line-height: 20px;
|
|
|
|
&.cancel {
|
|
background-color: #000;
|
|
color: #fff;
|
|
}
|
|
}
|
|
}
|
|
}
|