/* ===========================================================
   定价页专属样式 —— 整体风格沿用 wlrpa.html / wlrap.css
   基础样式（header / section / section-title / advantage 等）
   已通过 ../css/index.css + ./css/wlrap.css 引入，本文件只补充定价卡片布局
   =========================================================== */

/* 整站一条龙服务：定价卡片网格 */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.price-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 36px 30px 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
/* 推荐 / 尊享版高亮 */
.price-card.recommend {
    border: 2px solid #3498db;
    position: relative;
}
.price-card .badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #3498db;
    color: #fff;
    font-size: 0.8rem;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 1px;
}
.price-card .plan-category {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 10px;
}
.price-card h3 {
    font-size: 1.45rem;
    color: #2c3e50;
    margin-bottom: 14px;
}
.price-card .price {
    font-size: 2.6rem;
    font-weight: 700;
    color: #3498db;
    line-height: 1.1;
    margin-bottom: 4px;
}
.price-card .price .unit {
    font-size: 1rem;
    font-weight: 400;
    color: #888;
}
.price-card .price-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    min-height: 2.8em;
}
.price-card ul {
    list-style: none;
    text-align: left;
    margin: 0 0 26px;
    flex: 1;
}
.price-card li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    font-size: 0.95rem;
    color: #555;
    display: flex;
    align-items: flex-start;
}
.price-card li::before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    margin-right: 8px;
}
.price-card .card-btn {
    display: inline-block;
    width: 100%;
    padding: 11px 0;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.price-card .card-btn:hover {
    background-color: #2980b9;
}

/* 可选服务提示条 */
.optional-bar {
    margin-top: 32px;
    text-align: center;
    background: #f8f9fa;
    border: 1px dashed #3498db;
    border-radius: 8px;
    padding: 18px;
    color: #2c3e50;
    font-size: 1.05rem;
}
.optional-bar b {
    color: #e74c3c;
}

/* 单项服务列表 */
.single-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.single-card {
    background: #fff;
    border: 1px solid #eee;
    border-left: 4px solid #3498db;
    border-radius: 8px;
    padding: 22px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.single-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.single-card .single-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 10px;
}
.single-card h3 {
    font-size: 1.15rem;
    color: #2c3e50;
}
.single-card .single-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e74c3c;
    white-space: nowrap;
}
.single-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.55;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .pricing-grid,
    .single-grid {
        grid-template-columns: 1fr;
    }
    .price-card .price {
        font-size: 2.2rem;
    }
}
