105 lines
2.4 KiB
SCSS
105 lines
2.4 KiB
SCSS
.dialog__multiple {
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(0, 0, 0, 0.8);
|
|
position: fixed;
|
|
top: 0;
|
|
z-index: 10;
|
|
overflow: hidden;
|
|
.dialog__content {
|
|
width: 100%;
|
|
height: 960rpx;
|
|
background: #fcfcfc;
|
|
padding: 20rpx 32rpx 32rpx 32rpx;
|
|
box-sizing: border-box;
|
|
border-radius: 24rpx;
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
z-index: 20;
|
|
// .close_img {
|
|
// display: flex;
|
|
// justify-content: flex-end;
|
|
// .icon_close {
|
|
// width: 48rpx;
|
|
// height: 48rpx;
|
|
// }
|
|
// }
|
|
.tips {
|
|
background: #F5F5F7;
|
|
border-radius: 16rpx;
|
|
padding: 24rpx;
|
|
margin-top: 16rpx;
|
|
.tips_text {
|
|
font-size: 28rpx;
|
|
color: #666666;
|
|
text-align: left;
|
|
line-height: 40rpx;
|
|
}
|
|
}
|
|
.phone {
|
|
margin: 24rpx auto;
|
|
.phone_icon, .phone_text {
|
|
vertical-align: middle;
|
|
}
|
|
.phone_icon {
|
|
width: 48rpx;
|
|
height: 48rpx;
|
|
margin-right: 8rpx;
|
|
}
|
|
.phone_text {
|
|
font-size: 32rpx;
|
|
line-height: 32rpx;
|
|
text-align: center;
|
|
font-weight: 500;
|
|
color: #333333;
|
|
}
|
|
.phonelist_container {
|
|
margin-top: 32rpx;
|
|
height: 360rpx;
|
|
.phone_item {
|
|
width: 640rpx;
|
|
height: 88rpx;
|
|
line-height: 88rpx;
|
|
text-align: center;
|
|
color: #333333;
|
|
font-size: 40rpx;
|
|
border: 2rpx solid #ebebeb;
|
|
border-radius: 44rpx;
|
|
margin: 0 auto 24rpx;
|
|
}
|
|
.phone_item_selected {
|
|
font-weight: bold;
|
|
color: #ee5b0d;
|
|
border: 2rpx solid #ee5b0d;
|
|
background: #FFF2EB;
|
|
}
|
|
}
|
|
/* 自定义滚动条样式 */
|
|
// .phonelist_container::-webkit-scrollbar {
|
|
// width: 10rpx; /* 轨道宽度 */
|
|
// }
|
|
|
|
// .phonelist_container::-webkit-scrollbar-track {
|
|
// background-color: #F5F5F5; /* 轨道背景色 */
|
|
// }
|
|
|
|
// .phonelist_container::-webkit-scrollbar-thumb {
|
|
// background-color: #B8B8B8; /* 滑块颜色 */
|
|
// }
|
|
}
|
|
.btn {
|
|
width: 686rpx;
|
|
height: 96rpx;
|
|
line-height: 96rpx;
|
|
text-align: center;
|
|
background: #ee5b0d;
|
|
border-radius: 48rpx;
|
|
font-size: 32rpx;
|
|
font-family: PingFang SC, PingFang SC-Regular;
|
|
color: #ffffff;
|
|
margin: 28rpx auto 0;
|
|
}
|
|
}
|
|
} |