一体机放大效果开发

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

@@ -96,7 +96,7 @@ function handleMoreClick() {
<style lang="scss" scoped>
.page-header {
padding: 40rpx 28rpx 0;
padding: 60rpx 42rpx 0;
flex-shrink: 0;
/* #ifdef MP-WEIXIN */
padding-top: calc(40rpx + env(safe-area-inset-top));
@@ -110,7 +110,7 @@ function handleMoreClick() {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 15rpx;
margin-bottom: 23rpx;
}
.title-section {
@@ -120,16 +120,16 @@ function handleMoreClick() {
}
.main-title {
font-size: 40rpx;
font-size: 60rpx;
font-weight: 600;
color: #000000;
margin-bottom: 8rpx;
margin-bottom: 12rpx;
line-height: 1.2;
}
.sub-title {
font-size: 24rpx;
line-height: 28rpx;
font-size: 36rpx;
line-height: 42rpx;
color: rgba(51, 51, 51, 1);
text-align: left;
font-family: 'PingFangSC-Bold', 'PingFang SC', 'Helvetica Neue', Helvetica, Arial, 'Microsoft YaHei', sans-serif;
@@ -138,44 +138,44 @@ function handleMoreClick() {
.header-icons {
display: flex;
gap: 16rpx;
gap: 24rpx;
align-items: center;
}
.icon-dot {
width: 44rpx;
height: 44rpx;
width: 66rpx;
height: 66rpx;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 4rpx;
gap: 6rpx;
.dot {
width: 6rpx;
height: 6rpx;
width: 9rpx;
height: 9rpx;
background-color: #666666;
border-radius: 50%;
}
}
.icon-single-dot {
width: 44rpx;
height: 44rpx;
width: 66rpx;
height: 66rpx;
border-radius: 50%;
background-color: #666666;
}
.search-bar {
background-color: #EBF1FF;
border-radius: 40rpx;
padding: 0 28rpx;
margin-bottom: 16rpx;
border-radius: 60rpx;
padding: 0 42rpx;
margin-bottom: 24rpx;
display: flex;
align-items: center;
justify-content: center;
gap: 16rpx;
height: 88rpx;
gap: 24rpx;
height: 132rpx;
box-shadow: none;
position: relative;
z-index: 10;
@@ -190,17 +190,17 @@ function handleMoreClick() {
.search-placeholder {
flex: 1;
font-size: 28rpx;
font-size: 42rpx;
color: #999999;
text-align: center;
}
.tab-nav-wrapper {
background-color: #FFFFFF;
border-radius: 16rpx;
padding: 6rpx 20rpx;
margin-bottom: 10rpx;
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.1);
border-radius: 24rpx;
padding: 9rpx 30rpx;
margin-bottom: 15rpx;
box-shadow: 0 3rpx 12rpx rgba(0, 0, 0, 0.1);
position: relative;
z-index: 10;
pointer-events: auto;
@@ -208,14 +208,14 @@ function handleMoreClick() {
.tab-nav {
display: flex;
gap: 8rpx;
gap: 12rpx;
}
.tab-item {
flex: 1;
padding: 12rpx 24rpx;
border-radius: 20rpx;
font-size: 28rpx;
padding: 18rpx 36rpx;
border-radius: 30rpx;
font-size: 42rpx;
color: #000000;
background-color: transparent;
text-align: center;
@@ -230,7 +230,7 @@ function handleMoreClick() {
background: linear-gradient(135deg, #9974FD 0%, #286BFA 100%);
color: #FFFFFF;
font-weight: 500;
border-radius: 20rpx;
border-radius: 30rpx;
}
</style>