/* 重置样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue",
    Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

/* 整体容器 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
}

/* 主要内容区域 */
.main-content {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* 文章标题 */
.article-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.3;
}

/* 文章副标题 */
.article-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* 文章信息 */
.article-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  font-size: 14px;
  color: #666;
}

.article-info .author-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-info .author-avatar-small {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #e0e0e0;
}

.article-info .author {
  color: #4285f4;
  text-decoration: none;
  font-weight: 500;
}

.article-info .author:hover {
  text-decoration: underline;
}

.article-info .date {
  color: #999;
}

/* 评论区 */
.comments-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e5e5e5;
}

.comments-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
}

/* 发表评论 */
.comment-form {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}

.comment-form .comment-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-input-area {
  flex: 1;
}

.comment-input {
  width: 100%;
  min-height: 80px;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  resize: vertical;
  font-family: inherit;
}

.comment-input:focus {
  outline: none;
  border-color: #4285f4;
}

.comment-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 10px;
}

.comment-submit {
  background: #4285f4;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}

.comment-submit:hover {
  background: #3367d6;
}

/* 评论列表 */
.comments-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comment-item {
  display: flex;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.comment-item:last-child {
  border-bottom: none;
}

.comment-item .comment-avatar {
  position: relative;
}

.comment-item .comment-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.author-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  background: #ff6b35;
  color: white;
  font-size: 10px;
  padding: 2px 4px;
  border-radius: 8px;
  font-weight: 500;
}

.comment-content {
  flex: 1;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.comment-author {
  font-weight: 500;
  color: #1a1a1a;
  font-size: 14px;
}

.author-tag {
  background: #ff6b35;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: 500;
}

/* 文章正文 */
.article-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* 统一评论区文字大小与文章正文 */
.comment-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 10px;
}

/* 用戶等級樣式 */
.user-level {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 8px;
  font-weight: 500;
  margin-left: 8px;
}

/* 評論時間樣式 */
.comment-time {
  font-size: 12px;
  color: #999;
  margin-top: 8px;
}

/* 回覆提及樣式 */
.reply-to {
  color: #4285f4;
  font-weight: 500;
  margin-right: 4px;
}

.article-content p {
  margin-bottom: 20px;
}

.article-image {
  margin: 30px 0;
  text-align: center;
}

.article-image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* 侧边栏 */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 20px;
  height: fit-content;
}

/* 导游卡片 */
.guide-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.guide-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.guide-content {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.guide-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f0f0f0;
}

.guide-info {
  flex: 1;
}

.guide-name {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.guide-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.guide-contact {
  margin-bottom: 15px;
}

.wechat-info {
  display: block;
  font-size: 14px;
  color: #333;
  text-align: center;
}

.wechat-info i {
  color: #1aad19;
  font-size: 16px;
  margin-right: 5px;
}

.guide-qr {
  text-align: center;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}

.qr-code img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}

.qr-code p {
  font-size: 12px;
  color: #666;
  margin: 0;
}

.contact-btn {
  background: #4285f4;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
  font-weight: 500;
}

.contact-btn:hover {
  background: #3367d6;
}

/* 快速留言模块 */
.message-form {
  margin-top: 40px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
}

.message-form h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
  text-align: left;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.required {
  color: #ff4757;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4285f4;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.radio-group {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 10px 12px;
  transition: border-color 0.3s, background-color 0.3s;
  flex: 1;
  min-width: 0;
  position: relative;
  background-color: #ffffff;
}

.radio-group::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  z-index: 1;
}

.radio-group:hover {
  border-color: #4285f4;
  background-color: white;
}

.radio-group:has(input:checked) {
  border-color: #4285f4;
  background-color: white;
}

.radio-group input[type="radio"] {
  width: auto;
  margin: 0;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.radio-group label {
  margin: 0;
  cursor: pointer;
  font-size: 16px;
  color: #666;
  position: relative;
  z-index: 2;
}

.radio-group input[type="radio"]:checked + label {
  color: #4285f4;
  font-weight: 500;
}

.submit-btn {
  background: #4285f4;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
  align-self: flex-start;
  min-width: 120px;
}

.submit-btn:hover {
  background: #3367d6;
}

.submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
  }

  .main-content {
    padding: 20px;
  }

  .article-title {
    font-size: 24px;
  }

  .guide-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .comment-form {
    padding: 12px;
  }

  .comment-input {
    min-height: 60px;
  }
}

@media (max-width: 480px) {
  .article-title {
    font-size: 20px;
  }

  .guide-card {
    padding: 15px;
  }

  .qr-code img {
    width: 100px;
    height: 100px;
  }

  .comment-item {
    padding: 10px 0;
  }

  .message-form {
    padding: 20px;
  }

  .contact-options {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .sidebar {
    display: none;
  }
}

/* 导游名称高亮样式 */
.guide-name-highlight {
  color: #ff3b30;
}

/* 微信号样式 */
.wechat-id {
  color: red;
  font-weight: bold;
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.wechat-id:hover {
  background-color: #f0f7ff;
  box-shadow: 0 2px 8px rgba(0, 102, 221, 0.15);
}

/* 查看二维码按钮样式 */
.view-qr-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin-left: 4px;
}

.qr-icon {
  object-fit: contain;
}

/* 复制成功弹窗 */
.copy-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.copy-content {
  position: relative;
  background: white;
  padding: 30px 30px;
  border-radius: 16px;
  width: 90%;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  animation: modalPop 0.3s ease-out;
}

@keyframes modalPop {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.copy-content .close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.copy-content .close-btn:hover {
  background: #f5f5f5;
  color: #666;
  transform: rotate(90deg);
}

.copy-header svg {
  color: #07c160;
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 4px rgba(7, 193, 96, 0.2));
}

.copy-header h3 {
  margin: 0;
  color: #333;
  font-size: 20px;
  font-weight: 600;
}

.copy-content p {
  color: #666;
  font-size: 16px;
  word-break: break-all;
  margin: 0;
}

.copy-footer {
  display: flex;
  gap: 20px;
  padding: 0 12px;
  margin-top: 20px;
}

.copy-footer .secondary-btn,
.copy-footer .primary-btn {
  flex: 1;
  padding: 12px 0;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.copy-footer .secondary-btn {
  background: #f5f5f5;
  color: #333;
}

.copy-footer .primary-btn {
  background: #07c160;
  color: white;
  box-shadow: 0 2px 6px rgba(7, 193, 96, 0.2);
}

.copy-footer .secondary-btn:hover {
  background: #ebebeb;
}

.copy-footer .primary-btn:hover {
  background: #06b054;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(7, 193, 96, 0.25);
}

/* 二维码弹窗样式 */
.qr-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(5px);
  animation: modalOverlayFadeIn 0.3s ease-out;
}

.qr-modal-content {
  background: white;
  width: 90%;
  max-width: 350px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.qr-modal-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
}

.qr-modal-header .close-btn {
  position: relative;
  top: auto;
  right: auto;
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.qr-modal-header .close-btn:hover {
  background: #f5f5f5;
  color: #666;
  transform: rotate(90deg);
}

.qr-modal-header .guide-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-guide-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.modal-guide-name {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.guide-tag {
  font-size: 12px;
  background: #fff4e5;
  color: #ff9500;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 500;
}

.qr-modal-body {
  padding: 24px;
  text-align: center;
}

.modal-qr-code {
  width: 260px;
  height: 260px;
  border-radius: 12px;
}

.qr-modal-footer {
  padding: 20px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  border-top: 1px solid #f0f0f0;
}

.secondary-btn {
  padding: 8px 20px;
  background: #f5f5f7;
  color: #666;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.secondary-btn:hover {
  background: #eee;
}

.primary-btn {
  padding: 8px 20px;
  background: #0066dd;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.primary-btn:hover {
  background: #0055bb;
  box-shadow: 0 4px 12px rgba(0, 102, 221, 0.2);
}

.qr-modal-footer .primary-btn {
  background: #07c160;
}

.qr-modal-footer .primary-btn:hover {
  background: #07c160;
  box-shadow: 0 4px 12px rgba(7, 193, 96, 0.2);
}

@keyframes modalOverlayFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* 移动端适配 */
@media (max-width: 768px) {
  .qr-modal-content {
    width: 95%;
  }

  .modal-qr-code {
    width: 240px;
    height: 240px;
  }

  .qr-modal-header {
    padding: 16px;
  }

  .qr-modal-body {
    padding: 20px;
  }

  .qr-modal-footer {
    padding: 16px;
  }
}

/* 弹窗遮罩和基础样式 */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  width: 90%;
  max-width: 500px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.modal-content {
  padding: 24px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.modal-header h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.modal-header .close-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

.modal-header .close-btn:hover {
  color: #333;
}

/* 悬浮按钮样式 */
.floating-buttons {
  position: fixed;
  right: 16px;
  bottom: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 12px;
  display: none;
}

/* 移动端显示悬浮按钮 */
@media (max-width: 768px) {
  .floating-buttons {
    display: flex;
  }
}

.float-btn {
  width: 45px;
  height: 45px;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.float-btn svg {
  width: 22px;
  height: 22px;
  fill: #0066dd;
}

/* 微信按钮特定绿色 */
.floating-buttons .float-btn:first-child svg {
  fill: #07c160;
}

.float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* 回到顶部按钮动画 */
.float-btn[v-show="true"] {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.float-btn[v-show="false"] {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

/* 移动端弹窗适配 */
@media (max-width: 768px) {
  .modal {
    width: 90%;
  }

  .modal-content {
    padding: 20px;
  }
}

/* 成功提示弹窗样式 */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.success-content {
  background: white;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 320px;
  animation: slideUp 0.3s ease;
}

.success-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: #34c759;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.3s ease;
}

.success-icon svg {
  width: 36px;
  height: 36px;
  fill: white;
}

.success-content h3 {
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.success-content p {
  font-size: 15px;
  color: #666;
  margin-bottom: 24px;
}

.success-btn {
  background: #0066dd;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.success-btn:hover {
  background: #0055bb;
  box-shadow: 0 4px 12px rgba(0, 102, 221, 0.2);
}

/* 通用提示弹窗样式 */
.alert-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(10px);
  animation: fadeIn 0.2s ease;
}

.alert-content {
  background: rgba(255, 255, 255, 0.95);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  max-width: 320px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.3s ease;
}

.alert-content p {
  margin-bottom: 20px;
  font-size: 15px;
  color: #1a1a1a;
  line-height: 1.4;
}

.alert-content button {
  background: #0066dd;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.alert-content button:hover {
  background: #0055bb;
  box-shadow: 0 4px 12px rgba(0, 102, 221, 0.2);
}

/* 评论注册弹窗样式 */
.comment-register-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(10px);
  animation: fadeIn 0.2s ease;
}

.comment-register-modal .modal-content {
  background: rgba(255, 255, 255, 0.95);
  padding: 24px;
  border-radius: 20px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.3s ease;
}

.comment-register-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.comment-register-modal .modal-header h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.comment-register-modal .close-btn {
  background: none;
  border: none;
  font-size: 28px;
  color: #86868b;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: all 0.2s ease;
}

.comment-register-modal .close-btn:hover {
  color: #1a1a1a;
}

.comment-register-modal .submit-btn {
  width: 100%;
  background: #0066dd;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.comment-register-modal .submit-btn:hover {
  background: #0055bb;
  box-shadow: 0 4px 12px rgba(0, 102, 221, 0.2);
}

/* 评论footer样式 */
.comment-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #999;
  margin-top: 10px;
}

.comment-time,
.comment-location {
  color: #999;
}

.comment-actions-right {
  display: flex;
  gap: 15px;
}

.comment-reply,
.comment-like {
  background: none;
  border: none;
  color: #666;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s;
}

.comment-reply:hover,
.comment-like:hover {
  color: #4285f4;
}

/* 动画效果 */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* 电话输入框样式 */
#contact-number,
#contact-number-modal,
#comment-contact-number {
  width: 100%;
}

.iti__selected-flag {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

/* 错误消息样式 */
.error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

/* 电话库容器 */
.iti {
  width: 100%;
}

/* 文章内的二维码样式 */
.ewm {
  text-align: center;
  margin: 20px 0;
}

.ewm img {
  max-width: 40%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .ewm img {
    max-width: 60%;
  }
}

/* 行程日程样式 */
.itinerary-day {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  border-left: 4px solid #4285f4;
  transition: all 0.3s ease;
}

.itinerary-day:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(66, 133, 244, 0.1);
}

.itinerary-day h4 {
  color: #4285f4;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.itinerary-day p {
  margin-bottom: 8px;
  line-height: 1.6;
}

.itinerary-day p:last-child {
  margin-bottom: 0;
  color: #666;
  font-style: italic;
}

.itinerary-day strong {
  color: #333;
  font-weight: 600;
}

/* 文章内容h3标题样式 */
.article-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 30px 0 15px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #f0f0f0;
}

.article-content ul {
  margin: 15px 0;
  padding-left: 20px;
}

.article-content ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .itinerary-day {
    padding: 15px;
    margin: 15px 0;
  }

  .itinerary-day h4 {
    font-size: 16px;
  }

  .article-content h3 {
    font-size: 18px;
    margin: 25px 0 12px 0;
  }
}

/* 文章分隔符样式 */
.article-separator {
  margin: 60px 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #ddd, transparent);
  position: relative;
}

.article-separator::before {
  content: "✦";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #f8f9fa;
  color: #999;
  font-size: 16px;
  padding: 0 20px;
}

/* 页面底部版权信息样式 */
footer {
  text-align: center;
  padding: 20px;
  background-color: #f5f5f7;
  color: #666;
  font-size: 14px;
  margin-top: 30px;
}

footer a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #4285f4;
  text-decoration: underline;
}
