/* ========== 旅行图鉴 lists_photo.htm 独立样式 ========== */
/* ========== 容器（字体/背景挂这里，body 零规则） ========== */
.ta-app { max-width: 1280px; margin: 0 auto; font-family: "PingFang SC","Microsoft YaHei",-apple-system,BlinkMacSystemFont,sans-serif; background: #faf7f2; color: #2b2b2b; }
.ta-app * { box-sizing: border-box; }
.ta-app a { text-decoration: none; color: inherit; }
.ta-app img { display: block; }

/* ========== 导航 ========== */
.ta-nav { background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); position: sticky; top: 36px; /* 公共头部 .pc-hd-toolbar 固定高 36px，滚动后避免被其遮挡 */ z-index: 50; border-bottom: 1px solid #f0ece4; width: 100vw; margin-left: calc(-50vw + 50%); }
.ta-nav__inner { max-width: 1280px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; } /* 与公共头部内容同宽(1280px+24px)，保证与 logo 对齐 */
.ta-nav__links { display: flex; gap: 26px; }
.ta-nav__link { font-size: 14px; color: #555; cursor: pointer; transition: color .2s; font-weight: 500; }
.ta-nav__link:hover { color: #ff7a45; }
.ta-nav__right { position: relative; }
.ta-nav__btn { background: linear-gradient(135deg,#ff7a45,#ff9a6b); color: #fff; border: none; padding: 8px 20px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; }
.ta-nav__btn:hover { box-shadow: 0 4px 14px rgba(255,122,69,0.35); }
.ta-nav__menu { position: absolute; top: calc(100% + 8px); right: 0; background: #fff; border-radius: 10px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); min-width: 170px; padding: 6px; display: none; }
.ta-nav__menu.is-open { display: block; }
.ta-nav__menu-item { display: flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: 7px; font-size: 13px; color: #333; cursor: pointer; }
.ta-nav__menu-item:hover { background: #fff5f0; color: #ff7a45; }

/* ========== Hero（背景占满全屏宽，文字居中） ========== */
.ta-hero { position: relative; width: 100vw; left: 50%; transform: translateX(-50%); height: 560px; overflow: hidden; color: #fff; }
.ta-hero__slides { position: absolute; inset: 0; }
.ta-hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.ta-hero__slide.is-active { opacity: 1; }
.ta-hero__slide img { width: 100%; height: 100%; object-fit: cover; background: #1f3a5f; }
.ta-hero__slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.55) 100%); }
.ta-hero__content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 24px; }
.ta-hero__title { font-size: 44px; font-weight: 800; line-height: 1.35; letter-spacing: 1px; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.ta-hero__sub { margin-top: 14px; font-size: 16px; opacity: 0.95; max-width: 640px; line-height: 1.7; text-shadow: 0 1px 6px rgba(0,0,0,0.3); }
.ta-hero__cta { margin-top: 26px; display: flex; gap: 12px; }
.ta-hero__btn { padding: 11px 28px; border-radius: 26px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; }
.ta-hero__btn--primary { background: #ff7a45; color: #fff; }
.ta-hero__btn--ghost { background: rgba(255,255,255,0.18); color: #fff; border: 1px solid rgba(255,255,255,0.6); }
.ta-hero__dots { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 8px; }
.ta-hero__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: all .3s; }
.ta-hero__dot.is-active { width: 22px; border-radius: 4px; background: #ff7a45; }

/* ========== 通用板块 ========== */
.ta-section { padding: 40px 24px; }
.ta-section__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 20px; }
.ta-section__title { margin: 0; font-size: 24px; font-weight: 800; color: #1f3a5f; }
.ta-section__title small { font-size: 13px; color: #999; font-weight: 400; margin-left: 8px; }
.ta-section__more { font-size: 13px; color: #ff7a45; cursor: pointer; }

/* ========== 目的地（旅行图鉴版：2 大卡 + 4 小卡） ========== */
.ta-dest-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.ta-dest-card { position: relative; border-radius: 14px; overflow: hidden; background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform .3s, box-shadow .3s; cursor: pointer; }
.ta-dest-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.14); }
.ta-dest-card--wide { grid-column: span 2; }
.ta-dest-card__cover { position: relative; overflow: hidden; height: 200px;}
.ta-dest-card--wide .ta-dest-card__cover { height: 400px; }
.ta-dest-card__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; background: #f0ece4; }
.ta-dest-card:hover .ta-dest-card__img { transform: scale(1.05); }
.ta-dest-card__from { position: absolute; left: 10px; top: 10px; background: rgba(0,0,0,0.5); color: #fff; font-size: 12px; padding: 3px 10px; border-radius: 4px; z-index: 2; }
.ta-dest-card__like { position: absolute; right: 10px; top: 10px; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.92); display: flex; align-items: center; justify-content: center; font-size: 15px; line-height: 1; cursor: pointer; box-shadow: 0 2px 6px rgba(0,0,0,0.15); transition: transform .2s; user-select: none; z-index: 2; }
.ta-dest-card__like:hover { transform: scale(1.15); }
.ta-dest-card__like.is-liked { background: #ffece8; }
.ta-dest-card__body { padding: 10px 12px 12px; }
.ta-dest-card__name { font-size: 14px; font-weight: 700; color: #333; line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ta-dest-card__meta { display: flex; gap: 6px; margin-top: 6px; }
.ta-dest-card__meta-item { font-size: 11px; color: #8a8a8a; background: #f5f5f5; border-radius: 4px; padding: 2px 6px; }
.ta-dest-card__meta-item--gold { color: #8a6d3b; background: #fff7e6; }
.ta-dest-card__bottom { display: flex; align-items: baseline; justify-content: space-between; margin-top: 8px; }
.ta-dest-card__price { font-size: 18px; font-weight: 800; color: #ff4d4f; }
.ta-dest-card__price-unit { font-size: 12px; color: #999; font-weight: 400; margin-left: 2px; }
.ta-dest-card__rating { font-size: 13px; color: #f5a623; font-weight: 600; }
@media (max-width: 900px) {
  .ta-dest-grid { grid-template-columns: repeat(2,1fr); }
  .ta-dest-card--wide { grid-column: span 2; }
}

/* ========== 摄影学院 ========== */
.ta-academy { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.ta-lesson { display: block; text-decoration: none; color: inherit; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.05); transition: transform .3s; cursor: pointer; }
.ta-lesson:hover { transform: translateY(-4px); }
.ta-lesson__fig { margin: 0; }
.ta-lesson__img { width: 100%; height: 150px; object-fit: cover; background: #f0ece4; }
.ta-lesson__body { padding: 12px 14px; }
.ta-lesson__cat { font-size: 11px; color: #ff7a45; font-weight: 600; }
.ta-lesson__name { margin: 4px 0 0; font-size: 14px; font-weight: 700; color: #222; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ta-lesson__meta { display: flex; gap: 10px; font-size: 11px; color: #999; margin-top: 8px; }
.ta-lesson__level { font-size: 10px; font-weight: 700; padding: 1px 6px; border-radius: 3px; }
.ta-lesson__level--easy { background: #ecfdf5; color: #059669; }
.ta-lesson__level--mid { background: #fff7ed; color: #ea580c; }
.ta-lesson__level--hard { background: #fef2f2; color: #dc2626; }

/* ========== 装备推荐（横向滚动） ========== */
.ta-gear-scroll { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
.ta-gear-scroll::-webkit-scrollbar { height: 6px; }
.ta-gear-scroll::-webkit-scrollbar-thumb { background: #e7ddce; border-radius: 3px; }
.ta-gear { flex-shrink: 0; width: 220px; scroll-snap-align: start; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.05); transition: transform .3s; cursor: pointer; }
.ta-gear:hover { transform: translateY(-4px); }
.ta-gear__img { width: 100%; height: 150px; object-fit: cover; background: #f0ece4; }
.ta-gear__body { padding: 12px 14px; }
.ta-gear__name { font-size: 14px; font-weight: 700; color: #222; }
.ta-gear__cat { font-size: 11px; color: #999; margin-top: 3px; }
.ta-gear__score { font-size: 12px; color: #ff9f00; font-weight: 600; margin-top: 4px; }
.ta-gear__reason { font-size: 11px; color: #777; line-height: 1.5; margin-top: 6px; min-height: 32px; }
.ta-gear__ref { font-size: 11px; color: #bbb; margin-top: 8px; }
.ta-gear__more { font-size: 12px; color: #ff7a45; font-weight: 600; margin-top: 6px; }

/* ========== 作者招募 ========== */
.ta-recruit { background: linear-gradient(135deg,#1f3a5f,#2c517f); border-radius: 16px; padding: 36px 40px; color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.ta-recruit__title { font-size: 22px; font-weight: 800; }
.ta-recruit__desc { font-size: 13px; opacity: 0.85; margin-top: 8px; max-width: 560px; line-height: 1.7; }
.ta-recruit__list { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.ta-recruit__list span { font-size: 11px; background: rgba(255,255,255,0.14); padding: 3px 10px; border-radius: 14px; }
.ta-recruit__btn { flex-shrink: 0; background: #ff7a45; color: #fff; border: none; padding: 12px 28px; border-radius: 26px; font-size: 14px; font-weight: 600; cursor: pointer; }
.ta-recruit__btn:hover { box-shadow: 0 4px 14px rgba(255,122,69,0.4); }

/* ========== 按月推荐 ========== */
.ta-month-scroll { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; }
.ta-month-scroll::-webkit-scrollbar { height: 6px; }
.ta-month-scroll::-webkit-scrollbar-thumb { background: #e7ddce; border-radius: 3px; }
.ta-month { flex-shrink: 0; width: 200px; scroll-snap-align: start; border-radius: 12px; overflow: hidden; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.ta-month__img { width: 100%; height: 130px; object-fit: cover; background: #f0ece4; }
.ta-month__body { padding: 10px 12px; }
.ta-month__name { font-size: 14px; font-weight: 700; color: #222; }
.ta-month__desc { font-size: 11px; color: #999; margin-top: 4px; }

/* ========== 用户作品（瀑布流） ========== */
.ta-works { position: relative; }
.ta-works__grid { column-count: 4; column-gap: 16px; }
@media (max-width: 1100px) { .ta-works__grid { column-count: 3; } }
@media (max-width: 760px) { .ta-works__grid { column-count: 2; } }
.ta-work { display: block; text-decoration: none; color: inherit; border-radius: 12px; overflow: hidden; background: #f0ece4; box-shadow: 0 2px 10px rgba(0,0,0,0.06); position: relative; cursor: pointer; min-height: 120px; margin-bottom: 16px; break-inside: avoid; }
.ta-works__sentinel { height: 1px; clear: both; }
.ta-work__img { width: 100%; display: block; background: #e8e2d8; min-height: 120px; object-fit: cover; }
.ta-work__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%); opacity: 0; transition: opacity .3s; display: flex; flex-direction: column; justify-content: flex-end; padding: 14px; color: #fff; }
.ta-work:hover .ta-work__overlay { opacity: 1; }
.ta-work__title { font-size: 13px; font-weight: 700; }
.ta-work__author { font-size: 11px; opacity: 0.85; margin-top: 3px; }
.ta-work__meta { display: flex; gap: 12px; font-size: 11px; margin-top: 6px; opacity: 0.9; }
.ta-works__loading { text-align: center; padding: 18px; color: #999; font-size: 13px; flex-basis: 100%; }
.ta-works__done { text-align: center; padding: 14px; color: #bbb; font-size: 12px; flex-basis: 100%; }

/* ========== 装备详情弹窗 ========== */
.ta-modal-mask { position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 200; display: flex; align-items: center; justify-content: center; }
.ta-modal { background: #fff; border-radius: 14px; width: 520px; max-width: 92vw; max-height: 86vh; overflow: auto; padding: 24px; }
.ta-modal__close { float: right; font-size: 22px; cursor: pointer; color: #999; }
.ta-modal__img { width: 100%; height: 200px; object-fit: cover; border-radius: 10px; margin-top: 8px; }
.ta-modal__name { font-size: 18px; font-weight: 800; color: #222; margin-top: 12px; }
.ta-modal__cat { font-size: 12px; color: #999; }
.ta-modal__score { font-size: 13px; color: #ff9f00; font-weight: 600; margin-top: 4px; }
.ta-modal__reason { font-size: 13px; color: #555; line-height: 1.7; margin-top: 10px; }
.ta-modal__highlights { margin-top: 12px; }
.ta-modal__highlights li { font-size: 12px; color: #444; margin-bottom: 4px; }
.ta-modal__scenes { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.ta-modal__scenes span { font-size: 11px; background: #fff5f0; color: #ff7a45; padding: 3px 10px; border-radius: 12px; }
.ta-modal__btn { display: block; margin-top: 18px; width: 100%; padding: 11px; border: none; border-radius: 24px; background: linear-gradient(135deg,#ff7a45,#ff9a6b); color: #fff; font-size: 14px; font-weight: 600; cursor: pointer; }
