You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

132 lines
2.2 KiB

7 months ago
.inventory-bg {
min-height: 100vh;
7 months ago
background: #f5f6f7;
padding: 0.75rem;
7 months ago
}
.inventory-card {
background: #fff;
7 months ago
border-radius: 0.75rem;
padding: 1rem 0.75rem;
margin-bottom: 0.75rem;
}
.readonly-group {
margin-bottom: 1rem;
padding: 0.75rem;
background: #f8f9fa;
border-radius: 0.5rem;
}
.readonly-item {
7 months ago
display: flex;
7 months ago
justify-content: space-between;
margin-bottom: 0.625rem;
}
.readonly-item:last-child {
margin-bottom: 0;
}
.readonly-label {
color: #666;
font-size: 0.875rem;
}
.readonly-value {
color: #333;
font-size: 0.875rem;
font-weight: 500;
7 months ago
}
.form-group {
7 months ago
margin-bottom: 1rem;
7 months ago
}
.form-label {
7 months ago
font-size: 0.875rem;
color: #333;
margin-bottom: 0.5rem;
7 months ago
font-weight: 500;
}
.form-input {
7 months ago
height: 2.75rem;
background: #f8f9fa;
border: none;
border-radius: 0.5rem;
padding: 0 0.75rem;
font-size: 0.875rem;
color: #333;
7 months ago
}
.form-textarea {
7 months ago
min-height: 5rem;
background: #f8f9fa;
border: none;
border-radius: 0.5rem;
padding: 0.625rem 0.75rem;
font-size: 0.875rem;
color: #333;
7 months ago
}
.photo-upload {
display: flex;
7 months ago
flex-wrap: wrap;
gap: 0.625rem;
7 months ago
}
.photo-preview {
position: relative;
7 months ago
width: 5rem;
height: 5rem;
}
.photo-btn {
width: 5rem;
height: 5rem;
background: #f8f9fa;
border-radius: 0.5rem;
7 months ago
display: flex;
7 months ago
flex-direction: column;
align-items: center;
justify-content: center;
padding: 0;
}
.photo-btn .iconfont {
font-size: 1.5rem;
color: #666;
margin-bottom: 0.25rem;
}
.btn-text {
font-size: 0.75rem;
color: #666;
}
.photo-preview {
position: relative;
7 months ago
}
.photo-img {
7 months ago
width: 5rem;
height: 5rem;
border-radius: 0.5rem;
7 months ago
}
.photo-del {
7 months ago
position: absolute;
top: -0.5rem;
right: -0.5rem;
width: 1.25rem;
height: 1.25rem;
background: rgba(0,0,0,0.6);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.delete-icon {
7 months ago
color: #ff4d4f;
7 months ago
font-size: 1rem;
font-weight: bold;
line-height: 1;
7 months ago
}
.submit-btn {
7 months ago
width: 100%;
height: 2.75rem;
background: #409eff;
7 months ago
color: #fff;
7 months ago
font-size: 1rem;
font-weight: 500;
border-radius: 1.375rem;
margin-top: 1.5rem;
7 months ago
}
.submit-btn:active {
7 months ago
opacity: 0.9;
7 months ago
}