/* 服务详情页面样式 */
body {
    background-color: #ebebebe8 !important;
    /* 使用!important提高优先级 */
}

/* 顶部banner区域 */
.service-top-banner {
    overflow: hidden;
}

.service-top-banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* 主体内容区域 - 服务详情专用样式 */
main {
    text-align: center;
}

main img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/*--------------------  咨询我们样式  --------------------*/
.contact-section {
    background: linear-gradient(135deg, #8C68C7 0%, #fbf9ff 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60px;
    padding: 0 50px;
    display: flex;
    align-items: center;
    margin: 3vh 0 0 0;
}

.contact-us-content {
    /* background-color: aqua; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.contact-title {
    color: white;
    font-size: 1rem;
    margin: 0;
    font-weight: normal;
}

.contact-btn {
    background: linear-gradient(135deg, #9163CC 0%, #B084E6 100%);
    color: white;
    text-decoration: none;
    padding: 8px 30px;
    border-radius: 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(145, 99, 204, 0.3);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(145, 99, 204, 0.4);
}


/*--------------------  咨询我们样式  响应式优化  --------------------*/
@media (max-width: 768px) {
    .contact-section {
        display: flex;
        height: auto;
        padding: 20px 15px;
        /* 增加左右内边距 */
        margin: 1vh 0 0 0;
        /* 减少上下间距 */
    }

    .contact-us-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        max-width: 100%;
    }

    .contact-title {
        font-size: 16px;
        line-height: 1.4;
        margin: 0;
    }

    .contact-btn {
        font-size: 14px;
        padding: 6px 20px;
        text-decoration: none;
    }
}