feat: 球局状态操作done

This commit is contained in:
2025-09-17 18:34:36 +08:00
parent 9f4e026687
commit 9c56fd3f0e
10 changed files with 315 additions and 32 deletions

View File

@@ -24,4 +24,89 @@
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.60);
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.30);
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;
}
}
}
}