一体机放大效果开发
This commit is contained in:
@@ -196,25 +196,26 @@ const handleClose = () => {
|
||||
z-index: 9999;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding-top: 84rpx;
|
||||
}
|
||||
|
||||
.filter-header {
|
||||
height: 96rpx;
|
||||
height: 144rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 0 32rpx;
|
||||
padding: 0 48rpx;
|
||||
border-bottom: 1rpx solid #eee;
|
||||
background-color: #fff;
|
||||
box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
|
||||
box-shadow: 0 3rpx 15rpx rgba(0, 0, 0, 0.05);
|
||||
|
||||
.back-btn {
|
||||
font-size: 36rpx;
|
||||
width: 48rpx;
|
||||
font-size: 54rpx;
|
||||
width: 72rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 10rpx;
|
||||
padding: 15rpx;
|
||||
border-radius: 50%;
|
||||
transition: all 0.3s ease;
|
||||
|
||||
@@ -224,7 +225,7 @@ const handleClose = () => {
|
||||
}
|
||||
|
||||
.filter-title {
|
||||
font-size: 34rpx;
|
||||
font-size: 51rpx;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
}
|
||||
@@ -234,14 +235,14 @@ const handleClose = () => {
|
||||
display: flex;
|
||||
border-bottom: 1rpx solid #eee;
|
||||
background-color: #fff;
|
||||
box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
|
||||
box-shadow: 0 3rpx 15rpx rgba(0, 0, 0, 0.05);
|
||||
|
||||
.tab-item {
|
||||
flex: 1;
|
||||
height: 90rpx;
|
||||
line-height: 90rpx;
|
||||
height: 135rpx;
|
||||
line-height: 135rpx;
|
||||
text-align: center;
|
||||
font-size: 30rpx;
|
||||
font-size: 45rpx;
|
||||
color: #666;
|
||||
position: relative;
|
||||
transition: all 0.3s ease;
|
||||
@@ -256,9 +257,9 @@ const handleClose = () => {
|
||||
bottom: 0;
|
||||
left: 25%;
|
||||
width: 50%;
|
||||
height: 4rpx;
|
||||
height: 6rpx;
|
||||
background-color: #256BFA;
|
||||
border-radius: 2rpx;
|
||||
border-radius: 3rpx;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -270,7 +271,7 @@ const handleClose = () => {
|
||||
|
||||
.filter-content {
|
||||
flex: 1;
|
||||
padding: 40rpx 32rpx;
|
||||
padding: 60rpx 48rpx;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
@@ -278,7 +279,7 @@ const handleClose = () => {
|
||||
.radio-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 30rpx 0;
|
||||
padding: 45rpx 0;
|
||||
border-bottom: 1rpx solid #f0f0f0;
|
||||
transition: all 0.3s ease;
|
||||
position: relative;
|
||||
@@ -292,9 +293,9 @@ const handleClose = () => {
|
||||
}
|
||||
|
||||
radio {
|
||||
width: 28rpx;
|
||||
height: 28rpx;
|
||||
margin-right: 24rpx;
|
||||
width: 42rpx;
|
||||
height: 42rpx;
|
||||
margin-right: 36rpx;
|
||||
transform: scale(1);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
@@ -302,10 +303,10 @@ const handleClose = () => {
|
||||
}
|
||||
|
||||
radio .wx-radio-input {
|
||||
width: 28rpx;
|
||||
height: 28rpx;
|
||||
width: 42rpx;
|
||||
height: 42rpx;
|
||||
border-radius: 50%;
|
||||
border: 2rpx solid #ccc;
|
||||
border: 3rpx solid #ccc;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
@@ -315,11 +316,11 @@ const handleClose = () => {
|
||||
}
|
||||
|
||||
radio .wx-radio-input::before {
|
||||
width: 16rpx;
|
||||
height: 16rpx;
|
||||
line-height: 16rpx;
|
||||
width: 24rpx;
|
||||
height: 24rpx;
|
||||
line-height: 24rpx;
|
||||
text-align: center;
|
||||
font-size: 12rpx;
|
||||
font-size: 18rpx;
|
||||
color: #fff;
|
||||
background: transparent;
|
||||
transform: translate(-50%, -50%) scale(0);
|
||||
@@ -332,22 +333,22 @@ const handleClose = () => {
|
||||
}
|
||||
|
||||
.option-label {
|
||||
font-size: 30rpx;
|
||||
font-size: 45rpx;
|
||||
color: #333;
|
||||
flex: 1;
|
||||
font-weight: 400;
|
||||
line-height: 40rpx;
|
||||
line-height: 60rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.filter-footer {
|
||||
height: 160rpx;
|
||||
height: 240rpx;
|
||||
display: flex;
|
||||
border-top: 1rpx solid #eee;
|
||||
background-color: #fff;
|
||||
box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.05);
|
||||
padding: 20rpx 32rpx 100rpx;
|
||||
box-shadow: 0 -3rpx 15rpx rgba(0, 0, 0, 0.05);
|
||||
padding: 30rpx 48rpx 150rpx;
|
||||
flex-shrink: 0;
|
||||
position: relative;
|
||||
z-index: 10;
|
||||
@@ -355,15 +356,15 @@ const handleClose = () => {
|
||||
.footer-btn {
|
||||
flex: 1;
|
||||
margin: 0;
|
||||
border-radius: 16rpx;
|
||||
height: 80rpx;
|
||||
line-height: 80rpx;
|
||||
font-size: 32rpx;
|
||||
border-radius: 24rpx;
|
||||
height: 120rpx;
|
||||
line-height: 120rpx;
|
||||
font-size: 48rpx;
|
||||
transition: all 0.3s ease;
|
||||
font-weight: 500;
|
||||
|
||||
&:first-child {
|
||||
margin-right: 20rpx;
|
||||
margin-right: 30rpx;
|
||||
background-color: #f5f5f5;
|
||||
color: #666;
|
||||
border: 1rpx solid #e0e0e0;
|
||||
|
||||
Reference in New Issue
Block a user