/* style.css - 2026年深圳登报推广页面 */

:root {
    --primary-blue: #004085;
    --secondary-blue: #007bff;
    --accent-blue: #e7f1ff;
    --text-dark: #333333;
    --text-grey: #666666;
    --bg-light: #f4f7f9;
    --white: #ffffff;
    --success-green: #28a745;
    --warning-amber: #ffc107;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Hero */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 60px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.date-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero .subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Consultant Card */
.consultant-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-top: -60px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 10;
}

.card-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.avatar-box {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    border: 4px solid var(--accent-blue);
    overflow: hidden;
}

.avatar-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-box h2 {
    font-size: 1.6rem;
    margin-bottom: 5px;
    color: var(--primary-blue);
}

.info-box h2 small {
    font-size: 0.9rem;
    color: var(--text-grey);
    font-weight: 400;
}

.badge {
    display: inline-block;
    background: var(--secondary-blue);
    color: white;
    padding: 2px 10px;
    font-size: 0.75rem;
    border-radius: 4px;
    margin-bottom: 10px;
}

.bio {
    color: var(--text-grey);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.contact-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.call-btn, .wechat-btn {
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.call-btn {
    background: var(--secondary-blue);
    color: white;
    text-decoration: none;
}

.wechat-btn {
    background: var(--success-green);
    color: white;
}

.call-btn:hover, .wechat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Sections */
.section {
    background: var(--white);
    padding: 35px;
    border-radius: var(--border-radius);
    margin-top: 30px;
    box-shadow: var(--shadow);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.section-title .num {
    background: var(--accent-blue);
    color: var(--secondary-blue);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.9rem;
}

.section-title h2 {
    font-size: 1.4rem;
    color: var(--primary-blue);
}

/* Cost Section */
.price-tags {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.price-tags .tag {
    background: var(--accent-blue);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-blue);
}

.highlight {
    background: #fff9e6;
    padding: 10px 15px;
    border-left: 4px solid var(--warning-amber);
    border-radius: 4px;
    margin-bottom: 20px;
}

.cta-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.cta-box p {
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-box ul {
    list-style: none;
    padding-left: 0;
}

.cta-box li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.cta-box li::before {
    content: "✓";
    color: var(--success-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Method Grid */
.method-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.method-card {
    border: 2px solid #eee;
    padding: 25px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.method-card.active {
    border-color: var(--secondary-blue);
    background: #fdfdff;
}

.method-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-blue);
}

/* Steps */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.step {
    background: #f8f9fa;
    padding: 15px 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
}

.step span {
    display: block;
    width: 24px;
    height: 24px;
    background: var(--secondary-blue);
    color: white;
    border-radius: 50%;
    margin: 0 auto 10px;
    line-height: 24px;
    font-size: 0.8rem;
}

/* Tips & Grid */
.tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.grid-item h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.grid-item ul {
    padding-left: 18px;
}

.grid-item li {
    margin-bottom: 10px;
    color: var(--text-grey);
    font-size: 0.9rem;
}

/* FAQ */
.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

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

.faq-item h4 {
    color: var(--secondary-blue);
    margin-bottom: 8px;
}

.faq-item p {
    color: var(--text-grey);
    font-size: 0.95rem;
}

/* Warm Notice */
.warm-notice {
    background: linear-gradient(90deg, #fff3cd 0%, #fff9e6 100%);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-top: 30px;
    text-align: center;
    border: 1px dashed var(--warning-amber);
}

/* Footer */
footer {
    text-align: center;
    padding: 50px 0;
    color: var(--text-grey);
    font-size: 0.85rem;
}

footer p {
    margin-bottom: 5px;
}

footer a {
    color: var(--text-grey);
    text-decoration: none;
}

footer a:hover {
    color: var(--secondary-blue);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0 80px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .card-content {
        flex-direction: column;
        text-align: center;
    }
    
    .avatar-box {
        width: 100px;
        height: 100px;
    }
    
    .contact-actions {
        justify-content: center;
    }
    
    .method-grid, .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 20px;
    }
    
    .price-tags {
        grid-template-columns: 1fr 1fr;
    }
}
