完成小程序前端部分

This commit is contained in:
2025-05-29 21:29:32 +08:00
parent 40faa24750
commit 48e92710d6
27 changed files with 576 additions and 144 deletions

View File

@ -1,3 +1,4 @@
@import "../../../../app.wxss";
.mt-13 {
margin-top: 24.38rpx;
}
@ -40,11 +41,10 @@
}
.text-wrapper {
margin-right: 12.02rpx;
padding: 17.89rpx 0 13.73rpx;
padding: 13.89rpx 0 9.73rpx;
background-color: #ffffff;
border-radius: 9.38rpx;
width: 211.88rpx;
height: 54.38rpx;
}
.text_6 {
margin-left: 16.5rpx;
@ -115,4 +115,38 @@
border-radius: 50%;
width: 30rpx;
height: 30rpx;
}
}
radio {
transform: scale(0.8); /* 调整为你需要的缩放比例 */
}
/* 弹窗外围容器,覆盖全屏并居中 */
.popup-wrapper {
position: fixed;
top: -10%; left: 0; right: 0; bottom: 0;
z-index: 10000;
display: flex;
justify-content: center;
align-items: center;
background: transparent; /* 遮罩层单独负责 */
}
/* 遮罩层 */
.promo-mask {
position: fixed;
top: 0; left: 0; right: 0; bottom: 0;
background: rgba(0,0,0,0.45);
z-index: 9999;
}
/* 弹窗内容容器,使用你现有的.section样式 */
.popup-content {
position: relative;
z-index: 10001;
max-width: 90vw;
width: 600rpx; /* 你可以根据需求调整 */
max-height: 90vh;
overflow-y: auto; /* 高度超出时滚动 */
}