一体机放大效果开发

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

@@ -61,37 +61,37 @@ const store = useCareerRecommendationStore();
<style lang="scss" scoped>
.career-recommend {
padding: 10rpx 28rpx 20rpx;
padding: 15rpx 42rpx 30rpx;
}
.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;
}
.info-card {
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);
}
.card-title {
font-size: 32rpx;
font-size: 48rpx;
font-weight: 600;
color: #000000;
margin-bottom: 24rpx;
margin-bottom: 36rpx;
}
.card-content {
@@ -100,8 +100,8 @@ const store = useCareerRecommendationStore();
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;
@@ -109,8 +109,8 @@ const store = useCareerRecommendationStore();
}
.value {
font-size: 32rpx;
line-height: 46rpx;
font-size: 48rpx;
line-height: 69rpx;
color: rgb(16, 16, 16);
font-weight: 600;
text-align: left;
@@ -121,58 +121,58 @@ const store = useCareerRecommendationStore();
.skill-tags {
display: flex;
flex-wrap: wrap;
gap: 16rpx;
gap: 24rpx;
}
.skill-tag {
background-color: #EAEFFE;
color: rgba(44, 101, 247, 1);
padding: 8rpx 20rpx;
padding: 12rpx 30rpx;
border-radius: 0;
font-size: 24rpx;
font-size: 36rpx;
white-space: nowrap;
}
.job-item-card {
background-color: #FFFFFF;
border-radius: 16rpx;
padding: 28rpx;
margin-bottom: 20rpx;
box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.08);
border-left: 6rpx solid #409EFF;
border-radius: 24rpx;
padding: 42rpx;
margin-bottom: 30rpx;
box-shadow: 0 6rpx 18rpx rgba(0, 0, 0, 0.08);
border-left: 9rpx solid #409EFF;
position: relative;
}
.job-header {
margin-bottom: 16rpx;
margin-bottom: 24rpx;
}
.job-title {
font-size: 32rpx;
font-size: 48rpx;
font-weight: 600;
color: rgb(16, 16, 16);
text-align: left;
font-family: 'PingFangSC-Bold', 'PingFang SC', 'Helvetica Neue', Helvetica, Arial, 'Microsoft YaHei', sans-serif;
line-height: 46rpx;
line-height: 69rpx;
width: 100%;
}
.job-skills {
display: flex;
flex-wrap: wrap;
gap: 12rpx;
gap: 18rpx;
}
.job-skill-tag {
width: 130rpx;
height: 36rpx;
line-height: 34rpx;
width: 195rpx;
height: 54rpx;
line-height: 51rpx;
background-color: rgba(49, 100, 239, 0.1);
color: rgba(44, 101, 247, 1);
font-size: 24rpx;
font-size: 36rpx;
text-align: center;
font-family: 'PingFang SC', 'Helvetica Neue', Helvetica, Arial, 'Microsoft YaHei', sans-serif;
border-radius: 8rpx;
border-radius: 12rpx;
white-space: nowrap;
border: none;
display: flex;
@@ -182,16 +182,16 @@ const store = useCareerRecommendationStore();
}
.recommend-count {
margin-left: 12rpx;
font-size: 22rpx;
margin-left: 18rpx;
font-size: 33rpx;
color: #666666;
font-weight: 400;
}
.empty-text {
font-size: 24rpx;
font-size: 36rpx;
color: #999999;
line-height: 34rpx;
line-height: 51rpx;
}
button::after {