一体机放大效果开发

This commit is contained in:
冯辉
2026-03-12 17:10:34 +08:00
parent 0c63175816
commit e7ef23ad5d
83 changed files with 3034 additions and 2899 deletions

View File

@@ -70,7 +70,7 @@ const store = useCareerPathStore();
<style lang="scss" scoped>
.career-path {
padding: 10rpx 28rpx 20rpx;
padding: 15rpx 42rpx 30rpx;
}
.card-content {
@@ -79,8 +79,8 @@ const store = useCareerPathStore();
align-items: center;
.label {
font-size: 24rpx;
line-height: 34rpx;
font-size: 36rpx;
line-height: 51rpx;
color: rgba(154, 154, 154, 1);
text-align: left;
font-family: 'PingFangSC-Bold', 'PingFang SC', 'Helvetica Neue', Helvetica, Arial, 'Microsoft YaHei', sans-serif;
@@ -88,8 +88,8 @@ const store = useCareerPathStore();
}
.value {
font-size: 32rpx;
line-height: 46rpx;
font-size: 48rpx;
line-height: 69rpx;
color: rgb(16, 16, 16);
font-weight: 600;
text-align: left;
@@ -104,64 +104,64 @@ const store = useCareerPathStore();
.query-section {
background-color: #FFFFFF;
border-radius: 16rpx;
padding: 28rpx;
margin-bottom: 20rpx;
box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.08);
border-radius: 24rpx;
padding: 42rpx;
margin-bottom: 30rpx;
box-shadow: 0 6rpx 18rpx rgba(0, 0, 0, 0.08);
}
.section-title {
font-size: 32rpx;
font-size: 48rpx;
color: #000000;
display: flex;
align-items: center;
gap: 12rpx;
margin-bottom: 24rpx;
gap: 18rpx;
margin-bottom: 36rpx;
}
.title-text {
font-size: 32rpx;
font-size: 48rpx;
font-weight: 600;
color: #157DF0;
}
.input-label {
font-size: 28rpx;
font-size: 42rpx;
color: #000000;
font-weight: 500;
}
.input-field {
background-color: #F5F5F5;
border: 1rpx solid #E0E0E0;
border-radius: 12rpx;
padding: 20rpx 24rpx;
font-size: 28rpx;
border: 2rpx solid #E0E0E0;
border-radius: 18rpx;
padding: 30rpx 36rpx;
font-size: 42rpx;
color: #666666;
}
.path-summary {
margin-top: 16rpx;
font-size: 24rpx;
margin-top: 24rpx;
font-size: 36rpx;
color: #666666;
text-align: center;
}
.path-section {
background-color: #FFFFFF;
border-radius: 16rpx;
padding: 28rpx;
box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.08);
border-radius: 24rpx;
padding: 42rpx;
box-shadow: 0 6rpx 18rpx rgba(0, 0, 0, 0.08);
}
.timeline {
position: relative;
padding-left: 40rpx;
padding-left: 60rpx;
}
.timeline-item {
position: relative;
margin-bottom: 32rpx;
margin-bottom: 48rpx;
&:last-child {
margin-bottom: 0;
@@ -172,14 +172,14 @@ const store = useCareerPathStore();
position: absolute;
left: -32rpx;
top: 0;
width: 2rpx;
width: 3rpx;
height: 100%;
background: repeating-linear-gradient(
to bottom,
#E0E0E0 0,
#E0E0E0 6rpx,
transparent 6rpx,
transparent 12rpx
#E0E0E0 9rpx,
transparent 9rpx,
transparent 18rpx
);
transform: translateX(-50%);
z-index: 1;
@@ -191,56 +191,56 @@ const store = useCareerPathStore();
left: -32rpx;
top: 0;
transform: translateX(-50%);
width: 32rpx;
height: 32rpx;
width: 48rpx;
height: 48rpx;
border-radius: 50%;
z-index: 2;
}
.start-marker {
background-color: #FF4444;
border: 4rpx solid #FFFFFF;
box-shadow: 0 0 0 2rpx #FF4444;
border: 6rpx solid #FFFFFF;
box-shadow: 0 0 0 3rpx #FF4444;
}
.step-marker {
background-color: #286BFA;
border: 4rpx solid #FFFFFF;
box-shadow: 0 0 0 2rpx #286BFA;
border: 6rpx solid #FFFFFF;
box-shadow: 0 0 0 3rpx #286BFA;
}
.end-marker {
background-color: #52C41A;
border: 4rpx solid #FFFFFF;
box-shadow: 0 0 0 2rpx #52C41A;
border: 6rpx solid #FFFFFF;
box-shadow: 0 0 0 3rpx #52C41A;
}
.timeline-content {
background-color: #F5F5F5;
border-radius: 12rpx;
padding: 24rpx;
margin-left: 20rpx;
border-radius: 18rpx;
padding: 36rpx;
margin-left: 30rpx;
}
.step-title {
font-size: 30rpx;
font-size: 45rpx;
font-weight: 600;
color: #000000;
margin-bottom: 16rpx;
margin-bottom: 24rpx;
}
.skill-tags {
display: flex;
flex-wrap: wrap;
gap: 12rpx;
gap: 18rpx;
}
.skill-tag {
background-color: #F0F0F0;
color: #286BFA;
padding: 8rpx 16rpx;
border-radius: 8rpx;
font-size: 24rpx;
padding: 12rpx 24rpx;
border-radius: 12rpx;
font-size: 36rpx;
white-space: nowrap;
}