/* 详情页特定样式 */
.phone-detail-card {
  background: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin: 1.5rem auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  max-width: 900px;
}

.number-display {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.phone-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.carrier-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: white;
}

.carrier-badge.mobile {
  background: linear-gradient(135deg, #7e57c2, #5e35b1);
}

.carrier-badge.unicom {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.carrier-badge.telecom {
  background: linear-gradient(135deg, #3498db, #2980b9);
}

.result-section {
  margin: 1.5rem 0;
}

.result-box {
  background: #f8f9fa;
  padding: 1.25rem;
  border-radius: 0.375rem;
  border-left: 4px solid var(--primary-color);
  margin-bottom: 1rem;
}

.result-box h2 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.result-box p {
  margin: 0.5rem 0;
  color: #555;
}

.result-box p b {
  color: var(--primary-color);
}

.detail-section {
  margin: 2rem 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 768px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
}

.detail-item {
  background: white;
  padding: 1rem;
  border-radius: 0.375rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.detail-item h3 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.detail-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-item li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.detail-item li:last-child {
  border-bottom: none;
}

.detail-item li .label {
  color: #666;
}

.detail-item li .value {
  font-weight: 500;
  color: #333;
}

.related-info {
  margin: 2rem 0;
}

.related-info h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1.25rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .phone-number {
    font-size: 1.5rem;
  }
}

.info-card {
  background: white;
  padding: 1.25rem;
  border-radius: 0.375rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.info-card p {
  margin: 0;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.5;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.share-button {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  color: white;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.share-button.wechat {
  background: #07c160;
}

.share-button.weibo {
  background: #e6162d;
}

.share-button.qq {
  background: #12b7f5;
}

.share-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.share-button .icon {
  margin-right: 0.5rem;
} 