187 lines
2.8 KiB
Plaintext
187 lines
2.8 KiB
Plaintext
.schedule-panel {
|
|
margin-bottom: 26rpx;
|
|
padding: 6rpx 20rpx;
|
|
border: 2rpx solid #d7e1ef;
|
|
border-radius: 16rpx;
|
|
background: #f8fbff;
|
|
}
|
|
|
|
.schedule-row {
|
|
display: grid;
|
|
grid-template-columns: 178rpx minmax(0, 1fr);
|
|
align-items: center;
|
|
gap: 18rpx;
|
|
padding: 22rpx 0;
|
|
border-bottom: 1rpx solid #e6edf6;
|
|
}
|
|
|
|
.schedule-row.last {
|
|
border-bottom: 0;
|
|
}
|
|
|
|
.schedule-name {
|
|
color: #162232;
|
|
font-size: 27rpx;
|
|
font-weight: 700;
|
|
line-height: 1.35;
|
|
}
|
|
|
|
.time-range {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) 42rpx minmax(0, 1fr);
|
|
align-items: center;
|
|
gap: 12rpx;
|
|
}
|
|
|
|
.time-picker {
|
|
min-height: 74rpx;
|
|
justify-content: center;
|
|
padding: 0 10rpx;
|
|
color: #162232;
|
|
font-size: 27rpx;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.range-sep {
|
|
color: #6b778c;
|
|
text-align: center;
|
|
font-size: 24rpx;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.save-card {
|
|
padding-top: 22rpx;
|
|
}
|
|
|
|
.auto-submit-card {
|
|
padding: 24rpx;
|
|
}
|
|
|
|
.point-section-title {
|
|
margin: 28rpx 0 16rpx;
|
|
color: #1f64d8;
|
|
font-size: 25rpx;
|
|
font-weight: 900;
|
|
line-height: 1.35;
|
|
}
|
|
|
|
.location-head + .point-section-title {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.save-card .subtitle {
|
|
margin-top: 0;
|
|
margin-bottom: 18rpx;
|
|
}
|
|
|
|
.section-title-action {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.section-title-action text {
|
|
flex: 1;
|
|
}
|
|
|
|
.section-title-action::before {
|
|
margin-right: 0;
|
|
}
|
|
|
|
.add-point-btn {
|
|
width: 64rpx;
|
|
min-width: 64rpx;
|
|
padding: 0;
|
|
font-size: 40rpx;
|
|
font-weight: 900;
|
|
}
|
|
|
|
.location-card {
|
|
padding: 24rpx;
|
|
}
|
|
|
|
.location-card.collapsed {
|
|
padding: 0;
|
|
}
|
|
|
|
.location-card.expanded .location-head {
|
|
margin-bottom: 22rpx;
|
|
}
|
|
|
|
.location-head {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 18rpx;
|
|
}
|
|
|
|
.location-card.collapsed .location-head {
|
|
min-height: 92rpx;
|
|
padding: 0 24rpx;
|
|
}
|
|
|
|
.location-text {
|
|
min-width: 0;
|
|
flex: 1;
|
|
}
|
|
|
|
.location-text .schedule-name {
|
|
display: block;
|
|
max-width: 100%;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.location-accuracy {
|
|
display: block;
|
|
margin-top: 8rpx;
|
|
color: #1f64d8;
|
|
font-size: 22rpx;
|
|
font-weight: 700;
|
|
line-height: 1.35;
|
|
}
|
|
|
|
.locate-btn {
|
|
flex: 0 0 220rpx;
|
|
margin: 0;
|
|
padding: 0 14rpx;
|
|
}
|
|
|
|
.location-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 16rpx;
|
|
margin-top: 22rpx;
|
|
}
|
|
|
|
.location-cell {
|
|
min-width: 0;
|
|
padding: 18rpx;
|
|
border: 2rpx solid #d1dced;
|
|
border-radius: 14rpx;
|
|
background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
|
|
box-shadow:
|
|
0 8rpx 0 rgba(181, 194, 213, 0.68),
|
|
inset 0 2rpx 0 rgba(255, 255, 255, 0.92);
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.mono {
|
|
font-family: DIN Alternate, Arial, sans-serif;
|
|
font-size: 26rpx;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.coordinate-input {
|
|
width: 100%;
|
|
margin-top: 8rpx;
|
|
padding: 0 14rpx;
|
|
color: #162232;
|
|
font-weight: 800;
|
|
text-align: left;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.radius-item {
|
|
margin-top: 28rpx;
|
|
}
|