/* ==================== 人工询价页面样式 ==================== */

/* 主内容区 */
.main-content {
    flex: 1;
}

.inquiry-content {
    width: 1560px;
    margin: 0 auto;
}

/* ==================== Banner区域样式 ==================== */
.hero-banner {
    width: 100vw;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 36px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background: linear-gradient(180deg, rgba(1, 84, 152, 1) 0%, rgba(40, 127, 199, 1) 100%);
}

/* Banner 背景图层1 */
.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/rengong_bak.png');
    background-size: cover;
    background-position: center;
    opacity: 1;
    mix-blend-mode: screen;
    filter: contrast(1.2) brightness(1);
}

/* Banner 背景图层2 */
.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/rengong_bak2.png');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    mix-blend-mode: overlay;
}

.banner-content {
    color: #FFFFFF;
    position: relative;
    z-index: 2;
    width: 1560px;
    margin: 0 auto;
}

.banner-title {
    font-size: 60px;
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
    line-height: 82.32px;
    margin: 0;
    margin-bottom: 20px;
}

.banner-subtitle {
    font-size: 40px;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    margin: 0;
    margin-bottom: 40px;
}

.banner-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.banner-btn {
    width: 250px;
    height: 70px;
    background: rgba(255, 255, 255, 1);
    border: none;
    border-radius: 4px;
    color: rgba(7, 91, 160, 1);
    font-size: 24px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-btn:hover {
    opacity: 0.9;
    background: rgba(245, 245, 245, 1);
}

/* ==================== 服务统计区域样式 ==================== */
.service-stats {
    text-align: center;
    margin-bottom: 36px;
}

.service-title {
    font-size: 44px;
    font-weight: 500;
    color: rgba(51, 51, 51, 1);
    margin: 0;
    margin-bottom: 40px;
    margin-top: 20px;
}

.stats-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.stats-text {
    font-size: 34px;
    font-weight: 500;
    color: rgba(51, 51, 51, 1);
    margin: 0;
}

.stats-number {
    color: rgba(1, 84, 152, 1);
    font-weight: 500;
}

.service-btn {
    width: 192px;
    height: 58px;
    background: rgba(7, 91, 160, 1);
    border: none;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 19px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: rgba(1, 70, 130, 1);
}

.service-icon {
    background-image: url('../assets/svg/kefu.svg');
    background-repeat: no-repeat;
    background-size: 26px 26px;
    width: 26px;
    height: 26px;
    filter: brightness(0) invert(1);
}

.company-info {
    color: rgba(119, 119, 119, 1);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.5;
    overflow: hidden;
}

.message-container {
    position: relative;
    height: 56px;
    overflow: hidden;
}

.message {
    margin: 0;
    position: absolute;
    width: 100%;
    text-align: center;
    transition: top 0.5s ease, opacity 0.5s ease;
    opacity: 1;
    line-height: 28px;
    height: 28px;
    left: 0;
}

/* X位置（上方，第一行） */
.message-x {
    top: 0px;
}

/* Y位置（下方，第二行） */
.message-y {
    top: 28px;
}

/* 下一个消息（准备从下方进入） */
.message-next {
    top: 56px;
}

/* 向上移出的消息 */
.message.move-out {
    top: -28px;
    opacity: 0;
}

/* ==================== 服务特点卡片区域样式 ==================== */
.service-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 40px;
}

.feature-card {
    text-align: center;
    flex: 1;
}

.feature-image {
    width: 320px;
    height: 320px;
    margin: 0 auto 20px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-title {
    font-size: 22px;
    font-weight: 500;
    color: rgba(51, 51, 51, 1);
    margin: 0;
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 18px;
    font-weight: 400;
    color: rgba(119, 119, 119, 1);
    line-height: 1.6;
    width: 320px;
    margin: 0 auto;
}

/* ==================== 响应式适配 ==================== */
@media (max-width: 1600px) {
    .inquiry-content {
        width: 100%;
        padding: 0 20px;
    }
    
    .banner-content {
        width: 100%;
        padding: 0 20px;
    }
    
    .service-features {
        gap: 20px;
    }
    
    .feature-image {
        width: 280px;
        height: 280px;
    }
    
    .feature-desc {
        width: 280px;
    }
}

@media (max-width: 1200px) {
    .banner-title {
        font-size: 48px;
        line-height: 1.4;
    }
    
    .banner-subtitle {
        font-size: 32px;
    }
    
    .service-title {
        font-size: 36px;
    }
    
    .stats-text {
        font-size: 28px;
    }
    
    .service-features {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .feature-card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 300px;
    }
    
    .banner-title {
        font-size: 32px;
    }
    
    .banner-subtitle {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .banner-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .banner-btn {
        width: 200px;
        height: 58px;
        font-size: 20px;
    }
    
    .service-title {
        font-size: 28px;
    }
    
    .stats-text {
        font-size: 22px;
    }
    
    .service-features {
        flex-direction: column;
    }
    
    .feature-card {
        flex: 1 1 100%;
    }
    
    .feature-image {
        width: 240px;
        height: 240px;
    }
    
    .feature-desc {
        width: 100%;
        max-width: 400px;
    }
}

