/* ====== 浏览器样式重置 ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333333;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

ul, ol {
  list-style: none;
}

/* ====== 服务商详情页样式 ====== */

.zh_fws_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background: #f5f7fa;
  min-height: 100vh;
}

/* 面包屑导航 */
.zh_breadcrumb {
  padding: 20px 0;
  background: white;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 30px;
}

.zh_breadcrumb_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.zh_breadcrumb_nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6c757d;
}

.zh_breadcrumb_nav a {
  color: #333333;
  transition: color 0.3s;
}

.zh_breadcrumb_nav a:hover {
  color: #004cbe;
}

.zh_breadcrumb_separator {
  color: #6c757d;
}

/* 主要内容区域 */
.zh_fws_main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

/* 服务商信息卡片 */
.zh_fws_card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 76, 190, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid #e5e5e5;
}

.zh_fws_card:hover {
  transform: translateY(-2px);
}

.zh_fws_header {
  background: linear-gradient(135deg, #333333 0%, #4a4a4a 100%);
  color: white;
  padding: 30px;
  position: relative;
}

.zh_fws_header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=1200') center/cover;
  opacity: 0.1;
}

.zh_fws_header_content {
  position: relative;
  z-index: 2;
}

.zh_fws_title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.zh_fws_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 147, 255, 0.2);
  color: #0093ff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(0, 147, 255, 0.3);
}

/* 服务商基本信息 */
.zh_fws_info {
  padding: 30px;
}

.zh_fws_info_grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: start;
}

.zh_fws_thumb {
  width: 100%;
  max-width: 200px;
  height: 150px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  background: #f5f7fa;
}

.zh_fws_details {
  flex: 1;
}

.zh_fws_detail_item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f3f4;
}

.zh_fws_detail_item:last-child {
  border-bottom: none;
}

.zh_fws_detail_icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #004cbe, #0093ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 15px;
  font-size: 16px;
}

.zh_fws_detail_content {
  flex: 1;
}

.zh_fws_detail_label {
  font-size: 12px;
  color: #6c757d;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.zh_fws_detail_value {
  font-size: 15px;
  color: #333333;
  font-weight: 500;
}

.zh_fws_detail_value a {
  color: #004cbe;
  font-weight: 600;
}

.zh_fws_detail_value a:hover {
  color: #0093ff;
}

/* 服务商介绍 */
.zh_fws_intro {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 76, 190, 0.1);
  padding: 30px;
  margin-top: 30px;
  border: 1px solid #e5e5e5;
}

.zh_fws_intro_title {
  font-size: 20px;
  color: #333333;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.zh_fws_intro_title::before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(to bottom, #004cbe, #0093ff);
  border-radius: 2px;
}

.zh_fws_intro_content {
  line-height: 1.8;
  color: #555;
  font-size: 15px;
}

/* 侧边栏 */
.zh_fws_sidebar {
  space-y: 30px;
}

.zh_sidebar_card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 76, 190, 0.1);
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid #e5e5e5;
}

.zh_sidebar_header {
  background: linear-gradient(135deg, #333333 0%, #4a4a4a 100%);
  color: white;
  padding: 20px;
  text-align: center;
}

.zh_sidebar_title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.zh_fws_contact_info {
  padding: 25px;
  text-align: center;
}

.zh_fws_contact_avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, #004cbe, #0093ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
}

.zh_fws_contact_name {
  font-size: 18px;
  color: #333333;
  font-weight: 600;
  margin-bottom: 5px;
}

.zh_fws_contact_role {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 20px;
}

.zh_fws_contact_btn {
  background: linear-gradient(135deg, #004cbe, #0093ff);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.zh_fws_contact_btn:hover {
  background: linear-gradient(135deg, #0093ff, #004cbe);
  transform: translateY(-1px);
}

/* 平台保障样式 */
.zh_guarantee_content {
  padding: 20px;
}

.zh_guarantee_item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #28a745;
}

.zh_guarantee_item:last-child {
  margin-bottom: 0;
}

.zh_guarantee_item i {
  margin-right: 8px;
  font-size: 14px;
}

.zh_guarantee_item span {
  font-size: 14px;
}

/* 服务列表 */
.zh_services_section {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 76, 190, 0.1);
  padding: 30px;
  margin-top: 30px;
  border: 1px solid #e5e5e5;
}

.zh_fws_section_title {
  font-size: 22px;
  color: #333333;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.zh_fws_section_title::before {
  content: '';
  width: 4px;
  height: 28px;
  background: linear-gradient(to bottom, #004cbe, #0093ff);
  border-radius: 2px;
}

.zh_services_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.zh_service_item {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  background: #fafbfc;
}

.zh_service_item:hover {
  border-color: #004cbe;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 76, 190, 0.15);
}

.zh_service_thumb {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: #f5f7fa;
}

.zh_service_content {
  padding: 20px;
}

.zh_service_title {
  font-size: 16px;
  color: #333333;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.zh_service_title a {
  color: inherit;
}

.zh_service_title a:hover {
  color: #004cbe;
}

.zh_service_meta {
  font-size: 13px;
  color: #6c757d;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 推荐内容 */
.zh_recommendations {
  margin-top: 50px;
}

.zh_recommend_tabs {
  display: flex;
  margin-bottom: 30px;
  background: white;
  border-radius: 8px;
  padding: 5px;
  box-shadow: 0 2px 10px rgba(0, 76, 190, 0.1);
  border: 1px solid #e5e5e5;
}

.zh_tab_btn {
  flex: 1;
  padding: 12px 20px;
  background: none;
  border: none;
  color: #6c757d;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s;
  font-weight: 500;
}

.zh_tab_btn.active {
  background: linear-gradient(135deg, #004cbe, #0093ff);
  color: white;
}

.zh_recommend_content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 76, 190, 0.1);
  padding: 30px;
  border: 1px solid #e5e5e5;
}

.zh_recommend_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.zh_recommend_item {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  background: #fafbfc;
}

.zh_recommend_item:hover {
  border-color: #004cbe;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 76, 190, 0.15);
}

.zh_recommend_thumb {
  width: 100%;
  height: 160px;
  object-fit: contain;
  background: #f5f7fa;
}

.zh_recommend_info {
  padding: 15px;
}

.zh_recommend_title {
  font-size: 15px;
  color: #333333;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.zh_recommend_title a {
  color: inherit;
}

.zh_recommend_title a:hover {
  color: #004cbe;
}

/* 空状态 */
.zh_empty_state {
  text-align: center;
  padding: 40px;
  color: #6c757d;
}

/* 隐藏类 */
.zh_hidden {
  display: none;
}

.zh_empty_icon {
  font-size: 48px;
  margin-bottom: 20px;
  opacity: 0.5;
}

.zh_empty_text {
  font-size: 16px;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .zh_fws_main {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .zh_fws_info_grid {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .zh_fws_thumb {
    max-width: 150px;
    margin: 0 auto;
  }
  
  .zh_services_grid,
  .zh_recommend_grid {
    grid-template-columns: 1fr;
  }
  
  .zh_recommend_tabs {
    flex-direction: column;
  }
  
  .zh_fws_container {
    padding: 0 15px;
  }
  
  .zh_breadcrumb_inner {
    padding: 0 15px;
  }
}

/* 动画效果 */
.zh_fade_in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.zh_scale_hover {
  transition: transform 0.3s ease;
}

.zh_scale_hover:hover {
  transform: scale(1.02);
}
