Add aftersales electronic order form
This commit is contained in:
@@ -0,0 +1,88 @@
|
||||
.aftersales-electronic-form {
|
||||
color: #111827;
|
||||
}
|
||||
|
||||
.electronic-form-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 20px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.electronic-form-logo {
|
||||
height: 34px;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
.electronic-form-title {
|
||||
flex: 1;
|
||||
text-align: center;
|
||||
font-size: 20px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.electronic-form-serial {
|
||||
border: 2px solid #111827;
|
||||
padding: 8px 12px;
|
||||
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.electronic-form-table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
table-layout: fixed;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.electronic-form-table th,
|
||||
.electronic-form-table td {
|
||||
border: 1px solid #1f2937;
|
||||
padding: 9px 10px;
|
||||
vertical-align: top;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.electronic-form-table th {
|
||||
width: 120px;
|
||||
background: #f3f4f6;
|
||||
text-align: left;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.electronic-form-code {
|
||||
color: #165dff;
|
||||
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.electronic-form-text {
|
||||
min-height: 72px;
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
@media (max-width: 720px) {
|
||||
.electronic-form-header {
|
||||
align-items: flex-start;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.electronic-form-title {
|
||||
text-align: left;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.electronic-form-table {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.electronic-form-table th,
|
||||
.electronic-form-table td {
|
||||
padding: 8px;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user