2025-03-01 13:36:26 +00:00

61 lines
1.1 KiB
Plaintext

/* components/servicemodal/servicemodal.wxss */
view.bg {
background-color: rgba(0, 0, 0, 0.9);
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
text-align: center;
}
view.box {
width: 640rpx;
height: 80%;
margin: 100rpx auto;
border-radius: 30rpx;
background-image: linear-gradient(180deg, #b5c0e7 0%, #ffc0b8 100%);
z-index: 1000;
}
view.imagebox {
width: 500rpx;
height: 500rpx;
background: white;
border-radius: 25rpx;
padding: 20rpx;
display: inline-block;
margin: 150rpx auto 0 auto;
}
view.imagebox image {
width: 100%;
height: 100%;
}
view.text {
margin-top: 50rpx;
font-size: 37rpx;
color: #333;
}
view.return {
font-size: 28rpx;
color: #333;
border: 1rpx solid #333;
width: 100rpx;
margin: 50rpx auto;
padding: 10rpx 40rpx;
border-color: #ef4823;
border-radius: 20rpx;
display: flex;
align-items: center;
justify-content: center;
}
view.return image {
margin-right: 10rpx;
width: 25rpx;
height: 25rpx;
}