/* 技师详情页面样式 */
.back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.technician-detail {
  padding: 15px;
  padding-bottom: 70px;
}

.technician-header {
  display: flex;
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.technician-avatar-large {
  position: relative;
  width: 80px;
  height: 80px;
  margin-right: 15px;
}

.technician-avatar-large img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.technician-gender-large {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
}

.technician-gender-large.male {
  background-color: #2196F3;
}

.technician-gender-large.female {
  background-color: #FF4081;
}

.technician-basic-info {
  flex: 1;
}

.technician-name-large {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.technician-exp-large {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.technician-rating-large {
  font-size: 14px;
  color: #FF9800;
  margin-bottom: 8px;
}

.technician-cert-large {
  display: flex;
  flex-wrap: wrap;
}

.technician-detail-tabs {
  display: flex;
  background-color: white;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.detail-tab {
  flex: 1;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  color: #666;
  position: relative;
}

.detail-tab.active {
  color: #1CBBB4;
  font-weight: 500;
}

.detail-tab.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background-color: #1CBBB4;
  border-radius: 3px;
}

.technician-detail-content {
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.detail-panel {
  display: none;
}

.detail-panel.active {
  display: block;
}

.detail-section {
  margin-bottom: 20px;
}

.detail-section h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #333;
}

.detail-section p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.work-history {
  margin-top: 10px;
}

.work-item {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.work-item:last-child {
  border-bottom: none;
}

.work-year {
  width: 30%;
  font-size: 14px;
  color: #1CBBB4;
  font-weight: 500;
}

.work-place {
  width: 40%;
  font-size: 14px;
}

.work-position {
  width: 30%;
  font-size: 14px;
  color: #666;
  text-align: right;
}

.skill-list {
  margin-top: 10px;
}

.skill-item {
  margin-bottom: 15px;
}

.skill-name {
  font-size: 14px;
  margin-bottom: 5px;
}

.skill-level {
  display: flex;
  align-items: center;
}

.skill-bar {
  flex: 1;
  height: 6px;
  background-color: #f0f0f0;
  border-radius: 3px;
  overflow: hidden;
  margin-right: 10px;
}

.skill-progress {
  height: 100%;
  background-color: #1CBBB4;
  border-radius: 3px;
}

.skill-percent {
  font-size: 12px;
  color: #666;
  width: 40px;
  text-align: right;
}

.booking-btn-container {
  position: fixed;
  bottom: 70px;
  left: 0;
  right: 0;
  padding: 15px;
  background-color: white;
  border-top: 1px solid #f0f0f0;
  z-index: 99;
}

.booking-btn {
  width: 100%;
  background-color: #1CBBB4;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
}

/* 用户评价样式 */
#reviews-panel .review-section {
  padding: 0;
}

#reviews-panel .review-summary {
  background-color: transparent;
  box-shadow: none;
  padding: 0;
  margin-bottom: 20px;
}

#reviews-panel .review-item {
  margin-bottom: 15px;
  box-shadow: none;
  border: 1px solid #f0f0f0;
}

#reviews-panel .more-btn {
  margin-top: 10px;
}

/* 响应式调整 */
@media screen and (max-width: 320px) {
  .technician-name-large {
    font-size: 16px;
  }
  
  .work-year, .work-place, .work-position {
    font-size: 12px;
  }
} 