/* 城市页面专用样式 - City Page Styles */
/* 适用于所有城市页面：北京、上海、成都、广州、深圳、杭州、重庆、西安、武汉、南京、三亚、厦门、大理、丽江、青岛、苏州 */

/* ========== 景点展示区域 ========== */
.city-attractions-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
}

/* 景点图片背景渐变色 */
.city-attraction-image-1 { background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%); }
.city-attraction-image-2 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.city-attraction-image-3 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.city-attraction-image-4 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }

/* 景点标签颜色 */
.city-tag-red { background: #fff5f5; color: #e53e3e; }
.city-tag-green { background: #f0fff4; color: #38a169; }
.city-tag-blue { background: #ebf4ff; color: #3182ce; }
.city-tag-yellow { background: #fef5e7; color: #d69e2e; }

.city-attractions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.city-attraction-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.city-attraction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.city-attraction-image {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.city-attraction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.city-attraction-emoji {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
}

.city-attraction-content {
  padding: 20px;
}

.city-attraction-title {
  font-size: 18px;
  color: #2d3748;
  margin-bottom: 8px;
  font-weight: 600;
}

.city-attraction-desc {
  font-size: 14px;
  color: #718096;
  line-height: 1.6;
  margin-bottom: 12px;
}

.city-attraction-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.city-attraction-tag {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 12px;
}

/* ========== 美食/特色展示区域 ========== */
.city-food-section {
  padding: 60px 0;
  background: white;
}

.city-food-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.city-food-card {
  background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
  padding: 30px;
  border-radius: 16px;
  border: 2px solid #ffe5d9;
  transition: transform 0.3s ease;
}

.city-food-card:hover {
  transform: translateY(-3px);
}

.city-food-emoji {
  font-size: 48px;
  text-align: center;
  margin-bottom: 15px;
}

.city-food-title {
  font-size: 20px;
  color: #2d3748;
  margin-bottom: 12px;
  text-align: center;
  font-weight: 600;
}

.city-food-desc {
  font-size: 14px;
  color: #718096;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 15px;
}

.city-food-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.city-food-tag {
  font-size: 13px;
  padding: 6px 12px;
  background: white;
  border-radius: 20px;
  border: 1px solid;
}

/* ========== 生活方式/文化展示区域 ========== */
.city-lifestyle-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
}

.city-lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.city-lifestyle-card {
  background: white;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.city-lifestyle-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.city-lifestyle-emoji {
  font-size: 40px;
}

.city-lifestyle-title {
  font-size: 20px;
  color: #2d3748;
  font-weight: 600;
}

.city-lifestyle-desc {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 15px;
}

.city-lifestyle-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.city-lifestyle-tag {
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
}

/* ========== 为什么选择我们 ========== */
.city-why-section {
  padding: 50px 0;
  background: white;
}

.city-why-container {
  max-width: 900px;
  margin: 0 auto;
}

.city-why-title {
  font-size: 28px;
  color: #2d3748;
  margin-bottom: 15px;
  text-align: center;
}

.city-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.city-why-card {
  text-align: center;
  padding: 30px 20px;
  background: #f8f9fa;
  border-radius: 12px;
}

.city-why-emoji {
  font-size: 40px;
  margin-bottom: 15px;
}

.city-why-card-title {
  font-size: 18px;
  color: #2d3748;
  margin-bottom: 10px;
  font-weight: 600;
}

.city-why-card-desc {
  font-size: 14px;
  color: #718096;
  line-height: 1.8;
}

/* ========== 服务内容 ========== */
.city-services-box {
  margin-top: 35px;
  padding: 30px;
  background: linear-gradient(135deg, #fff5f0 0%, #fffaf5 100%);
  border-radius: 15px;
  border-left: 4px solid #ff6b6b;
}

.city-services-title {
  font-size: 20px;
  color: #2d3748;
  margin-bottom: 15px;
}

.city-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.city-service-item {
  display: flex;
  align-items: start;
  gap: 10px;
}

.city-service-check {
  color: #ff6b6b;
  font-weight: bold;
}

.city-service-text {
  font-size: 15px;
  color: #4a5568;
}

/* ========== 用户评价 ========== */
.city-reviews-section {
  padding: 50px 0;
  background: white;
}

.city-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 35px;
}

.city-review-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid;
}

.city-review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.city-review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.city-review-name {
  font-weight: 600;
  color: #2d3748;
}

.city-review-location {
  font-size: 13px;
  color: #718096;
}

.city-review-stars {
  color: #f6ad55;
  margin-bottom: 10px;
}

.city-review-text {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.8;
}

/* ========== 常见问题 ========== */
.city-faq-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.city-faq-container {
  max-width: 800px;
  margin: 50px auto 0;
}

.city-faq-item {
  background: white;
  padding: 25px 30px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.city-faq-item:last-child {
  margin-bottom: 0;
}

.city-faq-question {
  font-size: 16px;
  color: #2d3748;
  margin-bottom: 10px;
  font-weight: 600;
}

.city-faq-answer {
  font-size: 14px;
  color: #718096;
  line-height: 1.8;
}

/* ========== 标签颜色类 ========== */
.tag-red { color: #e53e3e; border-color: #feb2b2; }
.tag-yellow { color: #d69e2e; border-color: #fbd38d; }
.tag-green { color: #38a169; border-color: #9ae6b4; }
.tag-tea-green { background: #f0fdf4; color: #22543d; }
.tag-opera-yellow { background: #fef5e7; color: #744210; }
.tag-art-blue { background: #ebf4ff; color: #1e3a8a; }
.tag-night-red { background: #fff5f5; color: #742a2a; }

/* 评价卡片边框颜色 */
.review-border-purple { border-left-color: #667eea; }
.review-border-green { border-left-color: #48bb78; }
.review-border-pink { border-left-color: #ed64a6; }

/* 评价头像背景 */
.review-avatar-purple { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.review-avatar-green { background: linear-gradient(135deg, #48bb78 0%, #38a169 100%); }
.review-avatar-pink { background: linear-gradient(135deg, #ed64a6 0%, #d53f8c 100%); }

/* ========== 移动端响应式样式 ========== */
@media (max-width: 1024px) {
  .city-attractions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .city-food-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .city-lifestyle-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .city-why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .city-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  /* 景点卡片 */
  .city-attractions-section {
    padding: 40px 0;
  }

  .city-attractions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
  }

  .city-attraction-image {
    height: 200px;
  }

  .city-attraction-emoji {
    font-size: 48px;
  }

  /* 美食卡片 */
  .city-food-section {
    padding: 40px 0;
  }

  .city-food-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .city-food-card {
    padding: 25px 20px;
  }

  /* 生活方式卡片 */
  .city-lifestyle-section {
    padding: 40px 0;
  }

  .city-lifestyle-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .city-lifestyle-card {
    padding: 25px 20px;
  }

  /* 为什么选择我们 */
  .city-why-section {
    padding: 40px 0;
  }

  .city-why-title {
    font-size: 24px;
  }

  .city-why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 25px;
  }

  .city-why-card {
    padding: 25px 20px;
  }

  /* 服务内容 */
  .city-services-box {
    padding: 25px 20px;
    margin-top: 25px;
  }

  .city-services-title {
    font-size: 18px;
  }

  .city-services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .city-service-text {
    font-size: 14px;
  }

  /* 用户评价 */
  .city-reviews-section {
    padding: 40px 0;
  }

  .city-reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .city-review-card {
    padding: 25px 20px;
  }

  /* 常见问题 */
  .city-faq-section {
    padding: 50px 0;
  }

  .city-faq-container {
    margin: 30px auto 0;
  }

  .city-faq-item {
    padding: 20px;
    margin-bottom: 15px;
  }

  .city-faq-question {
    font-size: 15px;
  }

  .city-faq-answer {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .city-attractions-section,
  .city-food-section,
  .city-lifestyle-section,
  .city-why-section,
  .city-reviews-section {
    padding: 30px 0;
  }

  .city-attraction-image {
    height: 180px;
  }

  .city-attraction-emoji {
    font-size: 40px;
  }

  .city-food-emoji,
  .city-lifestyle-emoji,
  .city-why-emoji {
    font-size: 36px;
  }

  .city-why-title {
    font-size: 20px;
  }

  .city-services-title {
    font-size: 16px;
  }

  .city-faq-section {
    padding: 40px 0;
  }
}

/* ========== 联系电话样式 ========== */
.contact-phone {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.9;
}

.contact-phone a {
  color: inherit;
  text-decoration: underline;
}

/* ========== 温馨提示框 ========== */
.city-notice-box {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(135deg, #fff5f0 0%, #fffaf5 100%);
  border-radius: 16px;
  border-left: 4px solid #ff6b6b;
}

.city-notice-title {
  font-size: 16px;
  color: #2d3748;
  margin-bottom: 15px;
  font-weight: 600;
}

.city-notice-text {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 20px;
}

.city-notice-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.city-notice-btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s;
}

.city-notice-btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.city-notice-btn-secondary {
  background: white;
  color: #667eea;
  border: 2px solid #667eea;
}

.city-notice-title {
  font-size: 16px;
  color: #2d3748;
  margin-bottom: 15px;
  font-weight: 600;
}

.city-notice-text {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 20px;
}

.city-notice-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.city-notice-btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.city-notice-btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.city-notice-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.city-notice-btn-secondary {
  background: white;
  color: #667eea;
  border: 2px solid #667eea;
}

.city-notice-btn-secondary:hover {
  background: #667eea;
  color: white;
}

@media (max-width: 768px) {
  .city-notice-box {
    padding: 25px 20px;
    margin-top: 30px;
  }

  .city-notice-title {
    font-size: 15px;
  }

  .city-notice-text {
    font-size: 13px;
  }

  .city-notice-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .city-notice-btn {
    width: 100%;
    padding: 12px 20px;
  }
}
