.page-header-container {
    background: var(--white);
    padding: 15px 20px 10px 20px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    margin-bottom: 10px;
    position: relative;
}
.page-title {
    font-size: 24px; font-weight: 800; color: #1f2d3d; line-height: 1.3;
    position: relative; padding-left: 16px; margin: 0;
}
.page-title::before {
    content: ''; position: absolute; left: 0; top: 4px; bottom: 4px; width: 5px;
    background: linear-gradient(180deg, var(--primary-color) 0%, #4db6ac 100%);
    border-radius: 3px; box-shadow: 1px 1px 3px rgba(0, 150, 136, 0.2);
}
.page-subtitle {
    font-size: 12px; color: #999; margin-top: 8px; padding-left: 16px;
    display: flex; align-items: center; gap: 10px;
}
.info-grid {
    padding-top: 5px;
}
.info-item {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #333;
    padding: 8px 0;
    border-bottom: 1px solid #f9f9f9;
}
.info-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    fill: var(--primary-color);
    flex-shrink: 0;
}
.info-label {
    color: #666;
    margin-right: 5px;
    white-space: nowrap;
}
.info-val {
    color: #333;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}
/* --- 2. 景区卡片信息 --- */
.spot-info-card {
    background: var(--white); border-radius: 12px; padding: 20px;
    margin: 0 0px 20px 0px; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.price-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
    margin-bottom: 20px; padding: 15px 10px; border-radius: 10px;
    background: linear-gradient(to bottom, #f9fbfb, #f0fdfc);
    border: 1px solid #eef6f6;
}
.price-item { text-align: center; position: relative; }
.price-item:not(:last-child)::after {
    content: ''; position: absolute; right: -5px; top: 15%; height: 70%; width: 1px; background: #e0e0e0;
}
.price-item .p-label { font-size: 12px; color: var(--text-gray); display: block; margin-bottom: 4px; }
.price-item .p-num { font-size: 16px; color: var(--price-color); font-weight: bold; display: block; }

.spot-info-row { display: flex; align-items: center; padding: 12px 0; border-bottom: 1px dashed #eee; }
.spot-info-row:last-child { padding-bottom: 0; border-bottom: none; }
.spot-icon-box {
    width: 36px; height: 36px; min-width: 36px; border-radius: 50%;
    background-color: var(--secondary-color); color: var(--primary-color);
    display: flex; align-items: center; justify-content: center; margin-right: 15px;
}
.spot-icon-box svg { width: 18px; height: 18px; }
.spot-text-box { flex: 1; }
.spot-label { font-size: 12px; color: #999; line-height: 1; margin-bottom: 4px; display: block; }
.spot-value { font-size: 15px; color: #333; font-weight: 500; }
.highlight-text { color: var(--primary-color); font-weight: bold; }

/* --- 3. 正文详情区域 --- */
.content-section {
    background: var(--white); border-radius: 12px; padding: 10px 15px; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.content-title {
    font-size: 18px; font-weight: bold; margin-bottom: 5px; color: #333; display: flex; align-items: center;
}
.content-title::before {
    content: ''; display: block; width: 4px; height: 18px; border-radius: 2px;
    background: var(--primary-color); margin-right: 10px;
}
.content-body { font-size: 16px; line-height: 1.85; color: #4a4a4a; letter-spacing: 0.5px; }

/* 核心护盾：防图片撑爆屏幕 */
.content-body img { 
    max-width: 100% !important; height: auto !important; 
    border-radius: 6px; display: block; margin: 10px auto; 
}

/* --- 4. 上下篇翻页 --- */
.pagination-block { background: #fff; margin-bottom: 10px; padding: 0 10px; }
.pagination-item {
    display: flex; align-items: center; padding: 10px 0; border-bottom: 1px solid #f5f5f5;
    position: relative; transition: background-color 0.2s;
}
.pagination-item:last-child { border-bottom: none; }
.pagination-item:active { background-color: #fafafa; }
.pagination-tag { font-size: 11px; padding: 3px 8px; border-radius: 10px; margin-right: 12px; white-space: nowrap; flex-shrink: 0; font-weight: 500; }
.tag-prev { background: #f0f2f5; color: #999; }
.tag-next { background: rgba(0, 150, 136, 0.1); color: var(--primary-color); }
.pagination-link { flex: 1; overflow: hidden; margin-right: 10px; }
.pagination-link a, .pagination-link { display: block; font-size: 14px; color: #333; text-decoration: none; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; line-height: 1.4; }
.pagination-arrow { width: 14px; height: 14px; color: #ccc; flex-shrink: 0; }

/* --- 5. 底部栏目标题 --- */
.section-title span {
    font-size: 17px; font-weight: bold; color: #333; display: flex; align-items: center; text-shadow: 1px 1px 0 rgba(255,255,255,0.8);
}
.section-more {
    font-size: 12px; color: var(--primary-color); background: #fff; text-decoration: none;
    padding: 4px 12px; border-radius: 20px; box-shadow: 0 1px 3px rgba(0, 150, 136, 0.15); display: flex; align-items: center;
}
.section-more:active { background-color: #f0f0f0; transform: scale(0.95); }

.product-card:active { transform: scale(0.98); }
.tag {
    position: absolute; top: 0; left: 0; z-index: 2; font-size: 11px; color: #fff;
    background: linear-gradient(135deg, #ff9a00, #ff5700); padding: 3px 8px; border-bottom-right-radius: 8px;
}
.product-tagsn { margin-bottom: 8px; height: 18px; overflow: hidden; }
.sales-count { font-size: 11px; color: #999; margin-bottom: 3px; }
.lydt-zoom {
    display: block;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}
/* ================== 问答模块专属样式 ================== */
.product-ask-container {
    background: #fff; margin-top: 15px; border-top: 10px solid #f4f4f6; 
    padding: 20px 15px; max-width: 640px; margin: 0 auto;
}
.ask-title {
    font-size: 18px; font-weight: bold; border-left: 4px solid var(--primary-color, #009688); 
    padding-left: 12px; margin-bottom: 24px; color: #333;
}
.ask-form-box {
    background: #f8fafc; padding: 24px; border: 1px solid #e2e8f0; 
    border-radius: 16px; margin-top: 32px;
}
.ask-form-title {
    font-weight: bold; margin-bottom: 18px; color:#1e293b; 
    font-size:16px; display: flex; align-items: center;
}
.ask-form-title::before {
    content: ''; background: var(--primary-color, #009688); 
    width: 4px; height: 16px; display: inline-block; margin-right: 10px; border-radius: 2px;
}
.ask-input {
    width: 100%; padding: 14px; border: 1px solid #cbd5e1; border-radius: 12px; 
    box-sizing: border-box; margin-bottom: 12px; font-size: 14px; outline: none; background: #fff;
}
.ask-input:focus { border-color: var(--primary-color, #009688); }

/* 问答列表项样式 */
.ask-item { padding: 20px 0; border-bottom: 1px solid #f1f5f9; }
.ask-item a { text-decoration: none; display: block; }
.ask-item-title {
    font-weight: 700; color: #1e293b; font-size: 15px; 
    margin-bottom: 8px; display: flex; align-items: baseline;
}
.ask-item-tag {
    background: var(--primary-color, #009688); color: #fff; font-size: 11px; 
    padding: 2px 6px; border-radius: 4px; margin-right: 10px; flex-shrink: 0;
}
.ask-item-desc {
    color: #64748b; font-size: 13px; line-height: 1.6; margin-left: 36px; 
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* 分页按钮样式 */
.ask-page-btn {
    width: 36px; height: 36px; line-height: 34px; text-align: center; 
    border: 1px solid #e2e8f0; border-radius: 10px; cursor: pointer; 
    font-size: 13px; display: inline-block; transition: all 0.2s; 
    background: #fff; color: #64748b;
}
.ask-page-btn.active {
    background: var(--primary-color, #009688); color: #fff; border-color: var(--primary-color, #009688);
}