feat: 门票组件封装

This commit is contained in:
duanshuwen
2025-07-15 16:48:32 +08:00
parent b31b04f2e2
commit 591287e757
40 changed files with 420 additions and 50 deletions

View File

@@ -0,0 +1,46 @@
.form-wrapper {
background-color: #fff;
border-radius: 8px;
overflow: hidden;
}
.form-header {
background-color: rgba(25, 144, 255, 0.06);
border: 1px solid #e5e8ef;
border-radius: 8px 8px 0 0;
display: flex;
align-items: center;
padding: 10px 12px;
}
.form-icon {
height: 16px;
width: 16px;
margin-right: 8px;
}
.form-title {
font-size: 16px;
color: #00a6ff;
}
.form-item {
display: flex;
align-items: center;
padding: 12px 24px 12px 16px;
}
.form-label {
font-size: 16px;
color: #86909c;
margin-right: 10px;
width: 50px;
}
.form-input {
flex: 1;
font-size: 16px;
color: #333;
border-bottom: 1px solid #ddd;
padding-bottom: 6px;
}