
/* 摘要样式 */
.article-summary {
  background-color: #e9f7fe;
  border-left: 4px solid #1e88e5;
  padding: 20px;
  margin: 20px 0;
  border-radius: 4px;
  font-size: 16px;
}

/* 内容区域样式 */
.article-content {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

/* 章节标题 */
.section-title {
  font-size: 22px;
  color: #1e5799;
  margin: 25px 0 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #eaeaea;
}

/* 行程时间表 */
.schedule {
  margin: 20px 0;
}

.time-slot {
  background: #f5f9ff;
  border-left: 4px solid #4a90e2;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 4px;
}

.time {
  font-weight: bold;
  color: #1e5799;
  margin-bottom: 5px;
}

.activity {
  margin-bottom: 8px;
}

.service-support {
  background: #e8f4fd;
  padding: 10px;
  border-radius: 4px;
  font-size: 14px;
  margin-top: 10px;
}

/* 核心服务部分 */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.service-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  color: #1e5799;
  margin-bottom: 10px;
  font-size: 18px;
}

/* 底部联系方式 */
.contact-section {
  background: #1e5799;
  color: white;
  padding: 30px 20px;
  text-align: center;
  border-radius: 8px;
  margin-top: 30px;
}


.contact-btn {
  display: inline-block;
  background: #ff9800;
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  margin: 10px 5px;
  transition: background 0.3s;
}

.contact-btn:hover {
  background: #f57c00;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .article-title {
    font-size: 22px;
  }
  
  .article-content {
    padding: 20px 15px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  

}

@media (max-width: 480px) {
  .article-header {
    padding: 20px 15px;
  }
  
  .article-title {
    font-size: 20px;
  }
  
  .section-title {
    font-size: 19px;
  }
}

/* 导航样式 */
.post-navigation {
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
  flex-wrap: wrap;
}

.nav-link {
  display: flex;
  align-items: center;
  background: white;
  padding: 15px;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  flex: 1;
  margin: 5px;
  min-width: 200px;
}

.nav-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: #1e5799;
}

.nav-icon {
  margin-right: 15px;
  font-size: 20px;
}

.nav-label {
  display: block;
  font-size: 14px;
  color: #666;
}

.nav-title {
  font-weight: bold;
  margin-top: 5px;
}

/* 侧边栏样式 */
.sidebar-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
  overflow: hidden;
}

.card-header {
  background: #1e5799;
  color: white;
  padding: 15px;
  font-weight: bold;
}

.card-header i {
  margin-right: 8px;
}

.card-body {
  padding: 15px;
}

.tips-list {
  list-style: none;
}

.tips-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.tips-list li:last-child {
  border-bottom: none;
}

.tips-list a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.tips-list a:hover {
  color: #1e5799;
}



.wx_con {
  margin-top: 8px;
  font-size: 14px;
  color: #333;
}

.downs-ul {
  position: fixed;
  bottom: 20px;
  right: 20px;
  list-style: none;
  z-index: 1000;
}

.downs-ul li {
  margin-bottom: 10px;
}

.downs-ul a, .downs-ul button {
  display: block;
  background: #1e5799;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  width: 180px;
}

.downs-ul a:hover, .downs-ul button:hover {
  background: #15427a;
  transform: translateY(-3px);
}

/* 布局 */
.main-layout {
  display: flex;
  gap: 30px;
  margin: 30px 0;
}

.content-main {
  flex: 1;
}

.content-sidebar {
  width: 300px;
}

@media (max-width: 992px) {
  .main-layout {
    flex-direction: column;
  }
  
  .content-sidebar {
    width: 100%;
  }
  
  .weixin, .downs-ul {
    display: none;
  }
}

.calendar-eye {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.calendar-eye i {
  margin-right: 5px;
}

.calendar-eye i:first-child {
  margin-right: 15px;
}





