190 lines
3.2 KiB
SCSS
190 lines
3.2 KiB
SCSS
.create-service-order {
|
|
// margin-left: 12px;
|
|
// margin-right: 12px;
|
|
}
|
|
|
|
.create-service-wrapper {
|
|
// box-sizing: border-box;
|
|
padding: 12px 0;
|
|
// background-color: #eff6fa;
|
|
// box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.1);
|
|
// border-radius: 4px 20px 20px 20px;
|
|
// border: 1px solid #fff;
|
|
}
|
|
|
|
.order-header {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
margin-bottom: 10px;
|
|
color: #333;
|
|
}
|
|
|
|
.order-content {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
background-color: #fff;
|
|
padding: 12px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.order-item {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.order-icon {
|
|
width: 24px;
|
|
height: 24px;
|
|
margin-right: 8px;
|
|
border-radius: 50%;
|
|
background-color: #ffa500;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.order-description {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: #333;
|
|
}
|
|
|
|
.order-line {
|
|
position: relative;
|
|
border: 1px dashed #eeeeee;
|
|
margin-left: -12px;
|
|
margin-right: -12px;
|
|
|
|
&::before,
|
|
&::after {
|
|
content: "";
|
|
position: absolute;
|
|
top: -8px;
|
|
width: 16px;
|
|
height: 16px;
|
|
border-radius: 50px;
|
|
background-color: #eff6fa;
|
|
}
|
|
|
|
&::before {
|
|
left: -8px;
|
|
}
|
|
|
|
&::after {
|
|
right: -8px;
|
|
}
|
|
}
|
|
|
|
.order-details {
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.detail-item {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 10px;
|
|
font-size: 14px;
|
|
color: #333;
|
|
}
|
|
|
|
.detail-label {
|
|
width: 70px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.detail-value {
|
|
color: #333;
|
|
}
|
|
|
|
.detail-input {
|
|
border: none;
|
|
outline: none;
|
|
width: calc(100% - 80px);
|
|
font-size: 14px;
|
|
color: #333;
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
|
|
.order-select {
|
|
border: none;
|
|
outline: none;
|
|
width: 100%;
|
|
font-size: 14px;
|
|
color: #333;
|
|
}
|
|
|
|
.order-button {
|
|
width: 280px;
|
|
height: 42px;
|
|
background: linear-gradient(90deg, #ff7e00, #ffba00);
|
|
color: #fff;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
border-radius: 20px;
|
|
margin-top: 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
// 呼叫成功后的按钮容器
|
|
.order-buttons {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-top: 20px;
|
|
gap: 12px;
|
|
}
|
|
|
|
// 查看工单按钮(次要按钮)
|
|
.order-button-secondary {
|
|
flex: 1;
|
|
height: 42px;
|
|
background: linear-gradient(90deg, #0256FF, #00A6FF);
|
|
color: #fff;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
border: none;
|
|
border-radius: 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
// 已完成按钮(主要按钮)
|
|
.order-button-primary {
|
|
flex: 1;
|
|
height: 42px;
|
|
background: linear-gradient(90deg, #ff7e00, #ffba00);
|
|
color: #fff;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
border-radius: 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.footer-help {
|
|
margin-bottom: 12px;
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 14px;
|
|
color: #ed6a0c;
|
|
}
|
|
|
|
.help-icon {
|
|
width: 16px;
|
|
height: 14px;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.help-text {
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.help-phone {
|
|
cursor: pointer;
|
|
}
|