153 lines
2.6 KiB
Plaintext
153 lines
2.6 KiB
Plaintext
@import "../../../../app.wxss";
|
|
.mt-13 {
|
|
margin-top: 24.38rpx;
|
|
}
|
|
.ml-7 {
|
|
margin-left: 13.13rpx;
|
|
}
|
|
.section {
|
|
margin-left: 52.5rpx;
|
|
margin-right: 50.63rpx;
|
|
padding: 29.06rpx 35.63rpx 26.25rpx;
|
|
background-color: #ffffff;
|
|
border-radius: 18.75rpx;
|
|
}
|
|
.font_2 {
|
|
font-size: 26.25rpx;
|
|
font-family: SourceHanSansCN;
|
|
line-height: 22.76rpx;
|
|
color: #000000;
|
|
}
|
|
.text_2 {
|
|
line-height: 24.96rpx;
|
|
}
|
|
.section_2 {
|
|
padding: 35.46rpx 59.23rpx 60rpx 81.17rpx;
|
|
background-color: #f5f5f5;
|
|
border-radius: 18.75rpx;
|
|
}
|
|
.text_4 {
|
|
line-height: 24.3rpx;
|
|
}
|
|
.text_3 {
|
|
line-height: 31.88rpx;
|
|
width: 223.13rpx;
|
|
}
|
|
.group {
|
|
margin-top: 46.41rpx;
|
|
}
|
|
.text_5 {
|
|
line-height: 24.41rpx;
|
|
}
|
|
.text-wrapper {
|
|
margin-right: 12.02rpx;
|
|
padding: 13.89rpx 0 9.73rpx;
|
|
background-color: #ffffff;
|
|
border-radius: 9.38rpx;
|
|
width: 211.88rpx;
|
|
}
|
|
.text_6 {
|
|
margin-left: 16.5rpx;
|
|
}
|
|
.group_2 {
|
|
margin-top: 54.38rpx;
|
|
}
|
|
.text_7 {
|
|
line-height: 24.34rpx;
|
|
}
|
|
.text_8 {
|
|
margin-left: 18.38rpx;
|
|
}
|
|
.font {
|
|
font-size: 30rpx;
|
|
font-family: SourceHanSansCN;
|
|
line-height: 22.76rpx;
|
|
color: #000000;
|
|
}
|
|
.text {
|
|
line-height: 27.9rpx;
|
|
}
|
|
.group_3 {
|
|
margin-top: 45rpx;
|
|
}
|
|
.text_10 {
|
|
line-height: 24.52rpx;
|
|
}
|
|
.group_4 {
|
|
width: 223.31rpx;
|
|
}
|
|
.text_9 {
|
|
line-height: 24.41rpx;
|
|
}
|
|
.text_11 {
|
|
line-height: 24.34rpx;
|
|
}
|
|
.text-wrapper_2 {
|
|
padding: 20.76rpx 0 16.44rpx;
|
|
background-color: #ff8d1a;
|
|
border-radius: 93.75rpx;
|
|
width: 206.25rpx;
|
|
}
|
|
.font_3 {
|
|
font-size: 22.5rpx;
|
|
font-family: SourceHanSansCN;
|
|
}
|
|
.text_12 {
|
|
color: #ffffff;
|
|
line-height: 20.93rpx;
|
|
}
|
|
.text-wrapper_3 {
|
|
padding: 20.89rpx 0 16.52rpx;
|
|
background-color: #f5f5f5;
|
|
border-radius: 93.75rpx;
|
|
width: 206.25rpx;
|
|
}
|
|
.text_13 {
|
|
color: #424242;
|
|
line-height: 20.72rpx;
|
|
}
|
|
.radio .wx-radio-input {
|
|
border-radius: 50%;
|
|
width: 30rpx;
|
|
height: 30rpx;
|
|
}
|
|
.radio_1 .wx-radio-input {
|
|
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; /* 高度超出时滚动 */
|
|
}
|
|
|