/**
 * 玩处详情页样式
 * 网约向导静态页面生成系统
 */

/* ========== 玩处页面容器 ========== */
.place-page {
    background-color: #f5f5f5;
}

/* ========== 封面图增强 ========== */
.place-page .detail-cover {
    position: relative;
    max-height: 450px;
    border-radius: 16px;
    overflow: hidden;
}

/* ========== 评分样式 ========== */
.place-page .rating-item {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    padding: 4px 12px;
    border-radius: 20px;
}

.place-page .rating-item .rating-stars {
    color: #ffb800;
    font-size: 16px;
    margin-right: 4px;
}

.place-page .rating-item em {
    color: #ff9800;
    font-size: 18px;
    font-weight: 700;
}

/* ========== 位置信息 ========== */
.place-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 14px;
    color: #666;
}

.place-location .location-icon {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

/* ========== 推荐理由特殊样式 ========== */
.recommend-section {
    position: relative;
    border-left: 4px solid #00b4d8;
}

.recommend-section::before {
    content: '💡';
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 24px;
    opacity: 0.3;
}

/* ========== 信息图标 ========== */
.place-page .info-icon {
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

/* ========== 电话链接 ========== */
.place-page .info-list dd a {
    color: #00b4d8;
    text-decoration: none;
}

.place-page .info-list dd a:hover {
    text-decoration: underline;
}

/* ========== 响应式 ========== */
@media (max-width: 768px) {
    .place-page .detail-cover {
        max-height: 280px;
        border-radius: 12px;
    }
    
    .place-page .rating-item {
        padding: 3px 10px;
    }
    
    .place-page .rating-item em {
        font-size: 16px;
    }
    
    .recommend-section::before {
        top: 16px;
        right: 16px;
        font-size: 20px;
    }
}
