79 lines
1.4 KiB
Plaintext
Raw Normal View History

.serviceView {
2024-10-31 20:04:07 +08:00
margin-top: 80rpx;
}
.serviceView .leftLineTitle {
2024-10-31 20:04:07 +08:00
margin-left: 20rpx;
2025-06-13 16:44:29 +08:00
padding: 10rpx 0;
font-weight: bold;
}
.serviceView .serviceItemView {
2024-10-31 20:04:07 +08:00
margin-top: 30rpx;
}
.serviceView .serviceItemView .serviceItem {
2024-10-31 20:04:07 +08:00
border-bottom: 1px solid rgb(126, 126, 126, 0.2);
display: flex;
justify-content: space-between;
align-items: center;
word-break: break-all;
padding: 20rpx 20rpx;
2025-06-13 16:44:29 +08:00
transition: background-color 0.2s;
}
.serviceView .serviceItemView .serviceItem:active {
background-color: #f2f2f2;
}
.serviceView .serviceItemView .serviceItem:first-of-type {
2024-10-31 20:04:07 +08:00
border-top: 1px solid rgb(126, 126, 126, 0.2);
}
2025-06-13 16:44:29 +08:00
.leftLineTitle {
font-size: 42rpx;
}
.serviceView .serviceItem .name {
2024-10-31 20:04:07 +08:00
position: relative;
flex: 1;
margin-right: 20rpx;
padding-left: 10rpx;
font-size: 34rpx;
2025-06-13 16:44:29 +08:00
padding: 15rpx 0;
}
.serviceView .serviceItem .content {
2024-10-31 20:04:07 +08:00
color: red;
font-size: 24rpx;
max-width: 400rpx;
}
.statementView {
2024-10-31 20:04:07 +08:00
padding: 80rpx 40rpx;
font-size: 24rpx;
text-indent: 48rpx;
color: gray;
}
2025-06-13 16:44:29 +08:00
.submitBtn {
position: fixed;
bottom: 40rpx;
left: 50%;
transform: translateX(-50%);
width: 90%;
height: 88rpx;
line-height: 88rpx;
text-align: center;
background-color: #1989fa;
color: #fff;
border-radius: 44rpx;
font-size: 32rpx;
font-weight: bold;
box-shadow: 0 6rpx 10rpx rgba(25, 137, 250, 0.3);
}
.submitBtn:active {
background-color: #0b70d5;
}