一体机放大效果开发

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

@@ -229,30 +229,30 @@ onLoad(() => {
}
.guidance-header {
padding: 32rpx 24rpx;
padding: 48rpx 36rpx;
background-color: #FFFFFF;
box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.05);
box-shadow: 0 3rpx 18rpx rgba(0, 0, 0, 0.05);
text-align: center;
box-sizing: border-box;
}
.header-title {
display: block;
font-size: 36rpx;
font-size: 54rpx;
font-weight: bold;
color: #333333;
margin-bottom: 8rpx;
margin-bottom: 12rpx;
}
.header-subtitle {
display: block;
font-size: 24rpx;
font-size: 36rpx;
color: #666666;
}
.guidance-content {
flex: 1;
padding: 24rpx;
padding: 36rpx;
overflow-y: scroll;
box-sizing: border-box;
-webkit-overflow-scrolling: touch;
@@ -260,27 +260,27 @@ onLoad(() => {
.guidance-section {
background-color: #FFFFFF;
border-radius: 16rpx;
padding: 32rpx;
margin-bottom: 24rpx;
box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.05);
border-radius: 24rpx;
padding: 48rpx;
margin-bottom: 36rpx;
box-shadow: 0 3rpx 18rpx rgba(0, 0, 0, 0.05);
}
.section-title {
display: flex;
align-items: center;
margin-bottom: 24rpx;
margin-bottom: 36rpx;
}
.title-text {
font-size: 28rpx;
font-size: 42rpx;
font-weight: bold;
color: #333333;
margin-left: 12rpx;
margin-left: 18rpx;
}
.section-content {
font-size: 24rpx;
font-size: 36rpx;
color: #666666;
line-height: 1.6;
}
@@ -288,22 +288,22 @@ onLoad(() => {
/* 步骤样式 */
.step-item {
display: flex;
margin-bottom: 32rpx;
margin-bottom: 48rpx;
align-items: flex-start;
}
.step-number {
width: 48rpx;
height: 48rpx;
width: 72rpx;
height: 72rpx;
border-radius: 50%;
background-color: #256BFA;
color: #FFFFFF;
font-size: 24rpx;
font-size: 36rpx;
font-weight: bold;
display: flex;
align-items: center;
justify-content: center;
margin-right: 20rpx;
margin-right: 30rpx;
flex-shrink: 0;
}
@@ -313,15 +313,15 @@ onLoad(() => {
.step-title {
display: block;
font-size: 26rpx;
font-size: 39rpx;
font-weight: bold;
color: #333333;
margin-bottom: 8rpx;
margin-bottom: 12rpx;
}
.step-desc {
display: block;
font-size: 24rpx;
font-size: 36rpx;
color: #666666;
line-height: 1.6;
}
@@ -330,40 +330,40 @@ onLoad(() => {
.feature-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24rpx;
margin-top: 16rpx;
gap: 36rpx;
margin-top: 24rpx;
}
.feature-item {
text-align: center;
padding: 24rpx;
padding: 36rpx;
background-color: #F8FAFC;
border-radius: 12rpx;
border-radius: 18rpx;
}
.feature-icon {
margin-bottom: 16rpx;
margin-bottom: 24rpx;
}
.feature-title {
display: block;
font-size: 24rpx;
font-size: 36rpx;
font-weight: bold;
color: #333333;
margin-bottom: 8rpx;
margin-bottom: 12rpx;
}
.feature-desc {
display: block;
font-size: 20rpx;
font-size: 30rpx;
color: #999999;
}
/* 常见问题样式 */
.faq-item {
margin-bottom: 24rpx;
padding-bottom: 24rpx;
border-bottom: 1rpx solid #F0F0F0;
margin-bottom: 36rpx;
padding-bottom: 36rpx;
border-bottom: 2rpx solid #F0F0F0;
}
.faq-item:last-child {
@@ -375,40 +375,40 @@ onLoad(() => {
.faq-question {
display: flex;
align-items: center;
font-size: 26rpx;
font-size: 39rpx;
font-weight: bold;
color: #333333;
margin-bottom: 12rpx;
margin-bottom: 18rpx;
}
.faq-question uni-icons {
margin-right: 12rpx;
margin-right: 18rpx;
}
.faq-answer {
font-size: 24rpx;
font-size: 36rpx;
color: #666666;
line-height: 1.6;
padding-left: 40rpx;
padding-left: 60rpx;
}
/* 温馨提示样式 */
.tips-list {
margin-top: 16rpx;
margin-top: 24rpx;
}
.tip-item {
display: flex;
align-items: flex-start;
margin-bottom: 16rpx;
font-size: 24rpx;
margin-bottom: 24rpx;
font-size: 36rpx;
color: #666666;
line-height: 1.6;
}
.tip-icon {
margin-right: 12rpx;
margin-top: 8rpx;
margin-right: 18rpx;
margin-top: 12rpx;
flex-shrink: 0;
}
@@ -437,20 +437,20 @@ onLoad(() => {
}
.encourage-content uni-icons {
margin-bottom: 16rpx;
margin-bottom: 24rpx;
}
.encourage-text {
display: block;
font-size: 32rpx;
font-size: 48rpx;
font-weight: bold;
color: #FFFFFF;
margin-bottom: 8rpx;
margin-bottom: 12rpx;
}
.encourage-subtext {
display: block;
font-size: 24rpx;
font-size: 36rpx;
color: rgba(255, 255, 255, 0.9);
}
</style>