@charset "UTF-8";
/* 新人必看 - H5移动端样式 */
.mobile-guide {
  background: #fff;
  min-height: 100vh;
  padding-bottom: calc(50px + env(safe-area-inset-bottom));
}

/* 面包屑 */
.mobile-guide .breadcrumb {
  padding: 8px 8px;
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.mobile-guide .breadcrumb a {
  color: #000;
  text-decoration: none;
}

.mobile-guide .breadcrumb .separator {
  color: #909399;
}

.mobile-guide .breadcrumb span:last-child {
  color: #999;
}

/* 标题栏 */
.mobile-guide .page-title-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px 8px 8px;
}

.mobile-guide .page-title-bar .back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.mobile-guide .page-title-bar .back-btn img {
  width: 24px;
  height: 24px;
  transform: rotate(180deg);
}

.mobile-guide .page-title-bar .title {
  font-size: 15px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.9);
  margin: 0;
}

/* 分类标签 */
.mobile-guide .category-tabs {
  height: 40px;
  display: flex;
  align-items: center;
}

.mobile-guide .tabs-scroll {
  display: flex;
  gap: 8px;
  padding: 0 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.mobile-guide .tabs-scroll::-webkit-scrollbar {
  display: none;
}

.mobile-guide .tab-item {
  flex-shrink: 0;
  height: 32px;
  line-height: 32px;
  padding: 0 12px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
  background: rgba(0, 0, 0, 0.05);
  color: #000;
}

.mobile-guide .tab-item.active {
  background: #ea8101;
  color: #fff;
  font-weight: 600;
}

/* 列表内容 */
.mobile-guide .guide-list {
  padding: 0 12px;
}

.mobile-guide .guide-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px dashed #e3e3e3;
  text-decoration: none;
}

.mobile-guide .guide-item:last-child {
  border-bottom: none;
}

/* 封面图 */
.mobile-guide .guide-item .cover {
  width: 100%;
  aspect-ratio: 250/140;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
}

.mobile-guide .guide-item .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 信息区域 */
.mobile-guide .guide-item .info {
  display: flex;
  flex-direction: column;
}

.mobile-guide .guide-item .info-title {
  font-size: 15px;
  font-weight: 500;
  color: #000;
  line-height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 4px;
}

.mobile-guide .guide-item .info-content {
  font-size: 14px;
  color: #53565a;
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 8px;
}

.mobile-guide .guide-item .info-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.mobile-guide .guide-item .info-meta .tag {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  color: #fff;
}

.mobile-guide .guide-item .info-meta .tag-active {
  background: #e08206;
}

.mobile-guide .guide-item .info-meta .tag-end {
  background: #8c8c8c;
}

.mobile-guide .guide-item .info-meta .time {
  font-size: 12px;
  color: #53565a;
}

/* 无数据状态 */
.mobile-guide .nodata {
  padding-top: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mobile-guide .nodata-img {
  width: 72px;
  height: 72px;
}

.mobile-guide .nodata-text {
  color: #999;
  font-size: 14px;
}

/* 分页 */
.mobile-guide .pagination-wrap {
  padding: 16px 12px;
}

/* 联系Telegram */
.mobile-guide .tg-contact {
  border-top: 1px solid #e3e3e3;
  background: #fff;
  height: 48px;
  position: fixed;
  bottom: calc(50px + env(safe-area-inset-bottom));
  left: 0;
  right: 0;
  z-index: 10;
}

.mobile-guide .tg-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 48px;
  text-decoration: none;
}

.mobile-guide .tg-btn img {
  width: 24px;
  height: 24px;
}

.mobile-guide .tg-btn span {
  font-size: 14px;
  color: #000;
}

/* ============================================
   详情页样式 - mobile-guide-detail
   ============================================ */
.mobile-guide-detail {
  background: #fff;
  min-height: 100vh;
  padding-bottom: env(safe-area-inset-bottom);
}

/* 内容区域 */
.mobile-guide-detail .detail-content {
  padding: 12px;
}

/* 封面图 */
.mobile-guide-detail .detail-cover {
  width: 100%;
  aspect-ratio: 250/140;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #f5f5f5;
}

.mobile-guide-detail .detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 标题和时间 */
.mobile-guide-detail .detail-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.mobile-guide-detail .detail-title {
  font-size: 17px;
  font-weight: 500;
  color: #000;
  line-height: 28px;
  margin: 0;
  word-break: break-word;
}

.mobile-guide-detail .detail-time {
  font-size: 12px;
  color: #53565a;
  margin: 0;
}

/* 活动信息 */
.mobile-guide-detail .activity-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.mobile-guide-detail .activity-meta .tag {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  color: #fff;
}

.mobile-guide-detail .activity-meta .tag-active {
  background: #e08206;
}

.mobile-guide-detail .activity-meta .tag-end {
  background: #8c8c8c;
}

.mobile-guide-detail .activity-meta .activity-time {
  font-size: 12px;
  color: #53565a;
}

/* 分割线 */
.mobile-guide-detail .detail-divider {
  height: 1px;
  background: #e3e3e3;
  margin-bottom: 16px;
}

/* 正文内容 */
.mobile-guide-detail .detail-body {
  font-size: 15px;
  color: #000;
  line-height: 28px;
  word-break: break-word;
}

.mobile-guide-detail .detail-body p {
  margin: 0 0 16px 0;
}

.mobile-guide-detail .detail-body p:last-child {
  margin-bottom: 0;
}

.mobile-guide-detail .detail-body img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 8px 0;
}

.mobile-guide-detail .detail-body h1,
.mobile-guide-detail .detail-body h2,
.mobile-guide-detail .detail-body h3 {
  font-size: 17px;
  font-weight: 500;
  color: #000;
  line-height: 28px;
  margin: 16px 0 8px 0;
}

.mobile-guide-detail .detail-body h1:first-child,
.mobile-guide-detail .detail-body h2:first-child,
.mobile-guide-detail .detail-body h3:first-child {
  margin-top: 0;
}

.mobile-guide-detail .detail-body a {
  color: #ea8101;
  text-decoration: underline;
}

.mobile-guide-detail .detail-body ul,
.mobile-guide-detail .detail-body ol {
  margin: 8px 0;
  padding-left: 20px;
}

.mobile-guide-detail .detail-body li {
  margin-bottom: 4px;
}

.mobile-guide-detail .detail-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0;
  font-size: 14px;
}

.mobile-guide-detail .detail-body table th,
.mobile-guide-detail .detail-body table td {
  padding: 8px;
  border: 1px solid #e3e3e3;
  text-align: left;
}

.mobile-guide-detail .detail-body table th {
  background: #f5f5f5;
  font-weight: 500;
}

.mobile-guide-detail .detail-body blockquote {
  margin: 8px 0;
  padding: 12px 16px;
  background: #f5f5f5;
  border-left: 3px solid #ea8101;
  color: #53565a;
}

.mobile-guide-detail .detail-body pre,
.mobile-guide-detail .detail-body code {
  background: #f5f5f5;
  border-radius: 4px;
  font-family: monospace;
  font-size: 14px;
}

.mobile-guide-detail .detail-body pre {
  padding: 12px;
  overflow-x: auto;
  margin: 8px 0;
}

.mobile-guide-detail .detail-body code {
  padding: 2px 4px;
}

.mobile-guide-detail .detail-body pre code {
  padding: 0;
  background: transparent;
}

/*# sourceMappingURL=guide.css.map */
