You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

180 lines
2.8 KiB

.container {
background-color: #f5f5f5;
min-height: 100vh;
}
.service-detail-header {
background-color: #fff;
display: flex;
align-items: center;
justify-content: space-between;
padding: 16rpx 24rpx;
border-bottom: 1rpx solid #e8e8e8;
position: sticky;
top: 0;
z-index: 100;
}
.header-back, .header-placeholder {
width: 60rpx;
height: 60rpx;
display: flex;
align-items: center;
justify-content: center;
font-size: 32rpx;
font-weight: bold;
}
.header-title {
font-size: 32rpx;
font-weight: bold;
color: #333;
}
.service-detail-content {
padding: 20rpx;
}
.service-info-section {
background-color: #fff;
border-radius: 16rpx;
padding: 32rpx;
margin-bottom: 20rpx;
box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
display: flex;
align-items: center;
}
.service-avatar {
width: 120rpx;
height: 120rpx;
background-color: #f0f0f0;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 64rpx;
margin-right: 32rpx;
}
.service-basic-info {
flex: 1;
}
.service-name {
display: block;
font-size: 36rpx;
font-weight: bold;
color: #333;
margin-bottom: 8rpx;
}
.service-status {
display: block;
font-size: 28rpx;
color: #07C160;
}
.service-details {
background-color: #fff;
border-radius: 16rpx;
padding: 24rpx;
margin-bottom: 20rpx;
box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
}
.detail-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 16rpx 0;
border-bottom: 1rpx solid #f0f0f0;
}
.detail-item:last-child {
border-bottom: none;
}
.detail-label {
font-size: 28rpx;
color: #666;
}
.detail-value {
font-size: 28rpx;
color: #333;
text-align: right;
flex: 1;
margin-left: 40rpx;
}
.contact-section, .faq-section {
background-color: #fff;
border-radius: 16rpx;
padding: 24rpx;
margin-bottom: 20rpx;
box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
}
.section-title {
display: block;
font-size: 32rpx;
font-weight: bold;
color: #333;
margin-bottom: 24rpx;
}
.contact-button {
display: block;
width: 100%;
background-color: #FF6B81;
color: #fff;
font-size: 32rpx;
font-weight: bold;
padding: 24rpx;
border-radius: 12rpx;
border: none;
margin-bottom: 16rpx;
line-height: normal;
height: auto;
}
.contact-button:last-child {
margin-bottom: 0;
}
.contact-button.phone-button {
background-color: #07C160;
}
.contact-button.email-button {
background-color: #1989fa;
}
.contact-button:hover {
opacity: 0.9;
}
.faq-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 24rpx 0;
border-bottom: 1rpx solid #f0f0f0;
}
.faq-item:last-child {
border-bottom: none;
}
.faq-question {
font-size: 28rpx;
color: #333;
flex: 1;
}
.faq-arrow {
font-size: 28rpx;
color: #999;
margin-left: 20rpx;
}