/* 伴游服务平台 - 首页样式 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100% !important;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif !important;
  margin: 0 !important;
  padding: 0 !important;
  padding-top: 0 !important;
  color: #2c3e50 !important;
  background: #ffffff !important;
  line-height: 1.6 !important;
  min-height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 顶部导航 */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f0f0f0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 70px;
}

/* 主内容区域 - 为fixed header留出空间 */
header + section,
header + div,
header + .inner_main {
  margin-top: 70px;
}

/* 如果有面包屑导航，主内容区域不需要margin-top */
.breadcrumb-nav + section,
.breadcrumb-nav + div {
  margin-top: 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  color: #5a6c7d;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
  display: block;
  padding: 8px 0;
}

.nav-item > a:hover,
.nav-item.current > a {
  color: #dd1d4a;
}

.nav-item .sub-nav {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  padding: 8px 0;
  min-width: 160px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: none;
}

.nav-item:hover .sub-nav {
  display: block;
}

.sub-nav a {
  display: block;
  padding: 8px 20px;
  color: #5a6c7d;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}

.sub-nav a:hover {
  background: #f8f9fa;
  color: #2c3e50;
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-input {
  padding: 8px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  width: 180px;
  transition: all 0.2s;
}

.search-input:focus {
  outline: none;
  border-color: #2c3e50;
  box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.search-btn {
  padding: 8px 16px;
  background: #dd1d4a;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
}

.search-btn:hover {
  background: #c11840;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(221, 29, 74, 0.4);
}

/* 主横幅 */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #dd1d4a 0%, #ff6b9d 100%);
  margin-top: 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
}

.hero-left {
  flex: 1;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  position: relative;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  position: relative;
  line-height: 1.6;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
}

.hero-cta:hover {
  background: linear-gradient(135deg, #ee5a6f 0%, #ff6b6b 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 107, 107, 0.5);
}

.hero-right {
  flex: 0 0 400px;
  position: relative;
}

.hero-image {
  width: 400px;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* 品牌介绍区块 */
.brand-intro {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.brand-intro::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(221, 29, 74, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.brand-intro-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.brand-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #fff5f7 0%, #ffe8ee 100%);
  border: 1px solid rgba(221, 29, 74, 0.2);
  border-radius: 50px;
  margin-bottom: 24px;
}

.badge-icon {
  font-size: 20px;
}

.badge-text {
  font-size: 14px;
  font-weight: 600;
  color: #dd1d4a;
  letter-spacing: 0.5px;
}

.brand-intro-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 32px;
  line-height: 1.3;
  background: linear-gradient(135deg, #dd1d4a 0%, #ff6b9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-intro-text {
  margin-bottom: 48px;
}

.brand-intro-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #4a5568;
  margin-bottom: 20px;
  text-align: justify;
  text-indent: 2em;
}

.brand-intro-text p:last-child {
  margin-bottom: 0;
}

.brand-intro-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 40px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.stat-item {
  text-align: center;
  padding: 20px 0;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #dd1d4a;
  line-height: 1;
  margin-bottom: 12px;
  font-family: 'Arial', sans-serif;
}

.stat-number span {
  font-size: 28px;
  font-weight: 600;
  color: #ff6b9d;
}

.stat-label {
  font-size: 14px;
  color: #718096;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* 服务场景 */
.service-scenarios {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.scenario-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.scenario-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #dd1d4a, #ff6b9d);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.scenario-card:hover::before {
  transform: scaleX(1);
}

.scenario-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(221, 29, 74, 0.15);
  border-color: rgba(221, 29, 74, 0.1);
}

.scenario-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.scenario-social .scenario-icon {
  background: linear-gradient(135deg, #dd1d4a 0%, #ff6b9d 100%);
  color: #ffffff;
}

.scenario-leisure .scenario-icon {
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
  color: #ffffff;
}

.scenario-skills .scenario-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
}

.scenario-card:hover .scenario-icon {
  transform: scale(1.1) rotate(5deg);
}

.scenario-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2.5;
}

.scenario-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.3;
}

.scenario-card > p {
  font-size: 15px;
  color: #5a6c7d;
  line-height: 1.7;
  margin-bottom: 24px;
}

.scenario-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}

.scenario-features li {
  font-size: 14px;
  color: #2c3e50;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s;
}

.scenario-features li:last-child {
  border-bottom: none;
}

.scenario-card:hover .scenario-features li {
  padding-left: 8px;
}

.scenario-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dd1d4a;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}

.scenario-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #dd1d4a;
  transition: width 0.3s ease;
}

.scenario-link:hover::after {
  width: calc(100% - 24px);
}

.scenario-link:hover {
  gap: 12px;
  color: #c11840;
}

/* 热门城市 */
.hot-cities {
  padding: 80px 0;
  background: #ffffff;
}

.cities-container {
  margin-top: 48px;
}

.city-category {
  margin-bottom: 48px;
}

.city-category:last-child {
  margin-bottom: 0;
}

.category-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
  padding-left: 0;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.city-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  text-decoration: none;
  border: 2px solid #f0f0f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.city-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #dd1d4a, #ff6b9d);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.city-card:hover::before {
  transform: scaleX(1);
}

.city-card:hover {
  transform: translateY(-6px);
  border-color: #dd1d4a;
  box-shadow: 0 12px 32px rgba(221, 29, 74, 0.15);
}

.city-icon {
  font-size: 36px;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.city-card:hover .city-icon {
  transform: scale(1.2);
}

.city-name {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.city-card:hover .city-name {
  color: #dd1d4a;
}

.city-count {
  font-size: 13px;
  color: #999;
  font-weight: 400;
}

/* 不同等级城市的特殊样式 */
.city-tier-1:hover {
  background: linear-gradient(135deg, #fff5f7 0%, #ffffff 100%);
}

.city-tier-2:hover {
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
}

.city-tier-3:hover {
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

/* 伴游展示区域 */
.dipei-showcase {
  padding: 80px 0;
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #dd1d4a;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  color: #5a6c7d;
}

.dipei-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.dipei-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: none;
}

.dipei-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.dipei-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.dipei-avatar {
  width: 100%;
  height: 400px;
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
}

.dipei-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.dipei-card:hover .dipei-avatar img {
  transform: scale(1.05);
}

.dipei-info {
  padding: 16px 18px 18px;
}

.dipei-name {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.3px;
}

.dipei-name-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.dipei-age-gender {
  font-size: 13px;
  color: #999;
  font-weight: 400;
}

.dipei-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
}

.dipei-orders {
  font-size: 12px;
  color: #999;
  font-weight: 400;
}

.dipei-status {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  box-shadow: 0 2px 12px rgba(16, 185, 129, 0.4);
}

.dipei-status.offline {
  background: rgba(148, 163, 184, 0.95);
  box-shadow: 0 2px 12px rgba(148, 163, 184, 0.3);
}

.dipei-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: rgba(221, 29, 74, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  box-shadow: 0 2px 12px rgba(221, 29, 74, 0.4);
}

.dipei-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.dipei-tags .tag {
  padding: 4px 10px;
  background: #f5f5f5;
  color: #666;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 400;
}

.dipei-location {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
  font-weight: 400;
}

.dipei-rating {
  font-size: 13px;
  color: #fbbf24;
  margin-bottom: 10px;
  font-weight: 500;
}

.dipei-rating span {
  color: #999;
  font-size: 12px;
  font-weight: 400;
  margin-left: 4px;
}

.dipei-price {
  font-size: 20px;
  font-weight: 600;
  color: #ff4757;
  letter-spacing: 0.5px;
}

.dipei-price span {
  font-size: 13px;
  font-weight: 400;
  color: #999;
}

.view-more {
  text-align: center;
  margin-top: 40px;
}

.btn-view-more {
  padding: 14px 32px;
  background: #dd1d4a;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(221, 29, 74, 0.3);
}

.btn-view-more:hover {
  background: #c11840;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(221, 29, 74, 0.4);
}

/* 服务优势 */
.advantages {
  padding: 80px 0;
  background: #f8f9fa;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.advantage-card {
  padding: 32px 24px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s;
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.advantage-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #dd1d4a;
  margin-bottom: 10px;
}

.advantage-card p {
  font-size: 14px;
  color: #5a6c7d;
  line-height: 1.6;
}

/* 咨询表单 */
.contact {
  padding: 80px 0;
  background: #ffffff;
}

.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: #f8f9fa;
  padding: 48px 40px;
  border-radius: 16px;
  border: 1px solid #e8e8e8;
}

.contact h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  text-align: center;
}

.contact-subtitle {
  text-align: center;
  color: #5a6c7d;
  margin-bottom: 32px;
  font-size: 15px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.2s;
  background: #ffffff;
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: #2c3e50;
  box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
}

.btn-submit:hover {
  background: linear-gradient(135deg, #ee5a6f 0%, #ff6b6b 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.form-note {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: #7a8a9a;
}

/* 新闻资讯 */
.news-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.news-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  transition: all 0.3s;
  cursor: pointer;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: #2c3e50;
}

.news-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-date {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #dd1d4a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-content {
  padding: 20px;
}

.news-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s;
}

.news-title a:hover {
  color: #dd1d4a;
}

.news-desc {
  font-size: 14px;
  color: #5a6c7d;
  line-height: 1.6;
  margin-bottom: 16px;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #7a8a9a;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.news-author,
.news-views {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Footer - Sticky */
footer {
  margin-top: auto !important;
}

/* 核心Footer样式 */
.footer-main {
  width: 100%;
  background: #f9f9f9;
  padding: 30px 0;
  border-top: 4px solid #dd1d4a !important;
  font-size: 14px;
  color: #333;
}

/* 容器适配 - 居中+响应式 */
.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* 品牌主张栏样式 */
.footer-brand {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* 导航栏样式 */
.footer-nav {
  margin-bottom: 15px;
  line-height: 1.8;
}

.footer-nav a {
  color: #666;
  text-decoration: none;
  margin: 0 8px;
}

.footer-nav a:hover {
  color: #dd1d4a;
  text-decoration: underline;
}

/* 合规栏样式 */
.footer-compliance {
  color: #999;
  font-size: 13px;
  line-height: 1.8;
}

.footer-compliance p {
  margin: 5px 0;
}

.footer-compliance a {
  color: #999;
  text-decoration: none;
  margin: 0 5px;
}

.footer-compliance a:hover {
  color: #dd1d4a;
}

.footer-compliance span {
  margin: 0 3px;
  color: #ccc;
}

/* 文章内容区域链接样式 */
.newdtedit a,
.page_content a,
.wrap_page a {
  color: #dd1d4a;
  text-decoration: none;
  border-bottom: 2px solid #ff6b9d;
  padding-bottom: 2px;
  transition: all 0.3s;
}

.newdtedit a:hover,
.page_content a:hover,
.wrap_page a:hover {
  color: #ff6b9d;
  border-bottom-color: #dd1d4a;
}

.newdtedit a:visited,
.page_content a:visited,
.wrap_page a:visited {
  color: #c71842;
  border-bottom-color: #ff8fab;
}

.newdtedit a:focus,
.page_content a:focus,
.wrap_page a:focus {
  color: #dd1d4a;
  border-bottom-color: #ff6b9d;
  outline: 2px solid rgba(221, 29, 74, 0.3);
  outline-offset: 2px;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .footer-brand {
    font-size: 14px;
  }
  
  .footer-nav {
    font-size: 13px;
  }
  
  .footer-nav a {
    display: inline-block;
    margin: 5px 6px;
  }
}

@media (max-width: 1024px) {
  .cities-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  
  .dipei-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .hero-right {
    flex: 0 0 auto;
  }
  
  .hero-image {
    width: 100%;
    height: 400px;
  }
  
  /* 品牌介绍移动端适配 */
  .brand-intro {
    padding: 60px 0;
  }
  
  .brand-intro-title {
    font-size: 28px;
    margin-bottom: 24px;
  }
  
  .brand-intro-text p {
    font-size: 15px;
    line-height: 1.8;
    text-indent: 2em;
  }
  
  .brand-intro-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 30px 20px;
  }
  
  .stat-item:nth-child(2)::after {
    display: none;
  }
  
  .stat-item:nth-child(4)::after {
    display: none;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .stat-number span {
    font-size: 24px;
  }
  
  .stat-label {
    font-size: 13px;
  }
  
  .scenarios-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .scenario-card {
    padding: 32px 24px;
  }
  
  .cities-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .city-card {
    padding: 20px 12px;
  }
  
  .city-icon {
    font-size: 32px;
    margin-bottom: 10px;
  }
  
  .city-name {
    font-size: 14px;
  }
  
  .city-count {
    font-size: 12px;
  }
  
  .category-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .city-category {
    margin-bottom: 40px;
  }
  
  .hot-cities {
    padding: 60px 0;
  }
  
  .dipei-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .reviews-section {
    padding: 60px 0;
  }
  
  .review-card {
    padding: 24px;
  }
  
  .nav-main,
  .nav-search {
    display: none;
  }
  
  .contact-wrapper {
    padding: 32px 24px;
  }
}

/* 用户评价样式 */
.reviews-section {
  padding: 80px 0;
  background: #f9fafb;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.review-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.review-card-1 {
  border-left: 4px solid #dd1d4a;
}

.review-card-2 {
  border-left: 4px solid #48bb78;
}

.review-card-3 {
  border-left: 4px solid #667eea;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
}

.review-avatar-1 {
  background: linear-gradient(135deg, #dd1d4a 0%, #ff6b9d 100%);
}

.review-avatar-2 {
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
}

.review-avatar-3 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.review-name {
  font-weight: 600;
  color: #2d3748;
  font-size: 16px;
}

.review-location {
  font-size: 13px;
  color: #718096;
  margin-top: 2px;
}

.review-rating {
  color: #f6ad55;
  margin-bottom: 10px;
  font-size: 16px;
}

.review-text {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.8;
  margin: 0;
}

/* 移动端菜单按钮 */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: #2c3e50;
  transition: all 0.3s;
  border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* 移动端导航菜单 */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: white;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
}

/* ========== Bootstrap 5 现代化增强样式 ========== */

/* 平滑滚动 */
html {
  scroll-behavior: smooth;
}

/* 现代化卡片阴影和悬停效果 */
.card,
.dipei-card,
.news-card,
.scenario-card,
.city-card {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover,
.dipei-card:hover,
.news-card:hover,
.scenario-card:hover,
.city-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px);
}

/* 现代化按钮样式 */
.btn,
.btn-primary,
.btn-view-more,
.hero-cta,
.search-btn {
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(221, 29, 74, 0.3);
}

.btn:hover,
.btn-primary:hover,
.btn-view-more:hover,
.hero-cta:hover,
.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(221, 29, 74, 0.4);
}

/* 现代化输入框 */
.form-control,
.search-input,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  transition: all 0.2s ease;
}

.form-control:focus,
.search-input:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  border-color: #dd1d4a;
  box-shadow: 0 0 0 4px rgba(221, 29, 74, 0.1);
  outline: none;
}

/* 渐变背景动画 */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero,
.brand-intro {
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
}

/* 淡入动画 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.6s ease-out;
}

/* 脉冲动画 */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.dipei-status {
  animation: pulse 2s infinite;
}

/* 现代化滚动条 */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #dd1d4a 0%, #ff6b9d 100%);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #c11840 0%, #dd1d4a 100%);
}

/* 选择文本样式 */
::selection {
  background: rgba(221, 29, 74, 0.2);
  color: #1a1a1a;
}

::-moz-selection {
  background: rgba(221, 29, 74, 0.2);
  color: #1a1a1a;
}

/* 返回顶部按钮 */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #dd1d4a 0%, #ff6b9d 100%);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(221, 29, 74, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(221, 29, 74, 0.5);
}

/* 加载动画 */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading {
  position: relative;
  pointer-events: none;
  opacity: 0.6;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

/* Toast 通知样式 */
.toast-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  min-width: 300px;
  padding: 16px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
  transform: translateX(400px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast-notification.show {
  transform: translateX(0);
}

.toast-success {
  border-left: 4px solid #48bb78;
}

.toast-error {
  border-left: 4px solid #f56565;
}

.toast-warning {
  border-left: 4px solid #ed8936;
}

.toast-info {
  border-left: 4px solid #4299e1;
}

/* 图片懒加载效果 */
img[data-src] {
  opacity: 0;
  transition: opacity 0.3s;
}

img[data-src].loaded {
  opacity: 1;
}

/* 现代化表格样式 */
table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

table thead th {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  color: #2d3748;
  font-weight: 700;
  padding: 16px;
  border: none;
}

table tbody td {
  padding: 16px;
  border-bottom: 1px solid #e2e8f0;
}

table tbody tr:hover {
  background: #f7fafc;
}

/* 徽章样式 */
.badge {
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.badge-primary {
  background: linear-gradient(135deg, #dd1d4a 0%, #ff6b9d 100%);
  color: white;
}

.badge-success {
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
  color: white;
}

.badge-info {
  background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
  color: white;
}

/* 进度条 */
.progress {
  height: 12px;
  border-radius: 6px;
  background: #e2e8f0;
  overflow: hidden;
}

.progress-bar {
  background: linear-gradient(90deg, #dd1d4a 0%, #ff6b9d 100%);
  border-radius: 6px;
  transition: width 0.6s ease;
  height: 100%;
}

/* 模态框背景 */
.modal-backdrop {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

/* 提示框样式 */
.alert {
  padding: 16px 20px;
  border-radius: 12px;
  border: none;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 16px;
}

.alert-success {
  background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
  color: #22543d;
}

.alert-info {
  background: linear-gradient(135deg, #ebf8ff 0%, #bee3f8 100%);
  color: #2c5282;
}

.alert-warning {
  background: linear-gradient(135deg, #fffaf0 0%, #feebc8 100%);
  color: #7c2d12;
}

.alert-danger {
  background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
  color: #742a2a;
}

/* 面包屑导航 */
.breadcrumb {
  background: transparent;
  padding: 16px 0;
  margin: 0;
  display: flex;
  gap: 8px;
  list-style: none;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-item a {
  color: #5a6c7d;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-item a:hover {
  color: #dd1d4a;
}

.breadcrumb-item.active {
  color: #1a1a1a;
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #cbd5e0;
  font-size: 18px;
}

/* 下拉菜单现代化 */
.dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
  padding: 8px;
  min-width: 200px;
}

.dropdown-item {
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.2s;
  color: #5a6c7d;
}

.dropdown-item:hover {
  background: rgba(221, 29, 74, 0.05);
  color: #dd1d4a;
}

/* 分页现代化 */
.pagination {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-item .page-link {
  padding: 10px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  color: #5a6c7d;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
}

.page-item .page-link:hover {
  background: #dd1d4a;
  border-color: #dd1d4a;
  color: white;
  transform: translateY(-2px);
}

.page-item.active .page-link {
  background: #dd1d4a;
  border-color: #dd1d4a;
  color: white;
}

/* 响应式优化 */
@media (max-width: 768px) {
  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 20px;
  }
  
  .toast-notification {
    min-width: auto;
    left: 20px;
    right: 20px;
  }
}

.mobile-nav {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  z-index: 999;
}

.mobile-nav.active {
  max-height: 500px;
}

.mobile-nav-item {
  padding: 16px 24px;
  color: #2c3e50;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s;
  display: block;
}

.mobile-nav-item:hover {
  background: #f8f9fa;
  color: #dd1d4a;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-nav {
    display: flex;
  }
}

@media (max-width: 480px) {
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .city-card {
    padding: 16px 10px;
  }
  
  .city-icon {
    font-size: 28px;
    margin-bottom: 8px;
  }
  
  .city-name {
    font-size: 13px;
  }
  
  .city-count {
    font-size: 11px;
  }
  
  .category-title {
    font-size: 16px;
    margin-bottom: 16px;
    padding-left: 12px;
  }
  
  .city-category {
    margin-bottom: 32px;
  }
  
  .hot-cities {
    padding: 40px 0;
  }
  
  .dipei-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
  }
  
  .review-card {
    padding: 20px !important;
  }
  
  .reviews-section {
    padding: 40px 0 !important;
  }
}

/* 面包屑导航样式 - 在banner下方 */
.breadcrumb-nav {
  background: #f8f9fa;
  padding: 12px 0;
  border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 13px;
  align-items: center;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  color: #6c757d;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  padding: 0 10px;
  color: #cbd5e0;
  font-size: 16px;
  font-weight: 300;
}

.breadcrumb-item a {
  color: #667eea;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 500;
}

.breadcrumb-item a:hover {
  color: #764ba2;
  background: rgba(102, 126, 234, 0.1);
}

.breadcrumb-item.active {
  color: #2d3748;
  font-weight: 400;
}

@media (max-width: 768px) {
  .breadcrumb-nav {
    padding: 10px 0;
  }
  
  .breadcrumb {
    font-size: 13px;
  }
  
  .breadcrumb-item + .breadcrumb-item::before {
    padding: 0 6px;
  }
}
