/**
 * PC端广告服务页面样式
 *
 * @package HiTemp
 * @since 1.0.0
 */

.advertising-page {
    background: #f8fafc;
}

.advertising-page .article-hero {
    background: linear-gradient(135deg, #f66600 0%, #ff8534 50%, #ffa366 100%);
    position: relative;
    overflow: hidden;
    height: 200px;
    display: flex;
    align-items: center;
}

.advertising-page .article-hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
}

.advertising-page .article-hero .hero-content {
    max-width: 600px;
}

.advertising-page .article-hero .hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.advertising-page .article-hero .hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    min-height: 29px;
}

.advertising-page .article-hero .hero-decoration {
    position: relative;
    width: 200px;
    height: 200px;
}

.advertising-page .article-hero .deco-icon {
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 30px;
    left: 30px;
    transform: rotate(-8deg);
    backdrop-filter: blur(4px);
}

.advertising-page .article-hero .deco-icon i {
    font-size: 64px;
    color: rgba(255, 255, 255, 0.9);
}

.advertising-page .article-hero .deco-dots {
    width: 100px;
    height: 100px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.4) 2px, transparent 2px);
    background-size: 12px 12px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.advertising-page .content-section {
    padding: 60px 0;
}

.advertising-page .content-section.bg-light {
    background: #fff;
}

.advertising-page .section-content {
    width: 100%;
}

.advertising-page .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
    text-align: center;
}

.advertising-page .content-text {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

.advertising-page .ad-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.advertising-page .ad-type-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.advertising-page .ad-type-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.advertising-page .ad-type-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f66600, #ff8534);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.advertising-page .ad-type-icon i {
    font-size: 28px;
    color: #fff;
}

.advertising-page .ad-type-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.advertising-page .ad-type-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.advertising-page .advantage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.advertising-page .advantage-column {
    width: 100%;
}

.advertising-page .advantage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advertising-page .advantage-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    line-height: 1.8;
    font-size: 16px;
    color: #475569;
}

.advertising-page .advantage-list li i {
    position: absolute;
    left: 0;
    color: #f66600;
    font-size: 18px;
}

.advertising-page .process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    position: relative;
}

.advertising-page .process-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: linear-gradient(90deg, #f66600, #ff8534);
    z-index: 0;
}

.advertising-page .process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.advertising-page .step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f66600, #ff8534);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(246, 102, 0, 0.3);
}

.advertising-page .step-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.advertising-page .step-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.advertising-page .contact-info {
    text-align: center;
}

.advertising-page .contact-note {
    margin-top: 30px;
    font-size: 16px;
    color: #64748b;
    font-style: italic;
}

@media (max-width: 992px) {
    .advertising-page .advantage-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .advertising-page .process-steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .advertising-page .process-steps::before {
        display: none;
    }
}
