.contactUs-main {
    min-width: 1200px;
}

.swiper {
    width: 100%;
    height: 450px;
}

.contactUs-map {
    width: 1200px;
    margin: 0 auto;
    margin-top: 60px;
}

/* 核心服务卡片样式 */
.service-card {
    width: 43%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 50%, #f0f4ff 100%);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(234, 63, 40, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(234, 63, 40, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ea3f28, #ff6b4a, #ff8f70);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(234, 63, 40, 0.15), 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 18px;
    color: #ea3f28;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(234, 63, 40, 0.3), transparent);
}

.service-card ul {
    line-height: 2;
    color: #444;
    margin: 0;
    padding-left: 20px;
}

.service-card li {
    margin-bottom: 8px;
    position: relative;
}

.service-card li::marker {
    color: #ea3f28;
}

/* 典型服务场景卡片样式 */
.scene-card {
    flex: 1;
    text-align: center;
    padding: 35px 25px;
    border-radius: 16px;
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(234, 63, 40, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.scene-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ea3f28, #ff6b4a);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.scene-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(234, 63, 40, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
    background: linear-gradient(145deg, #ffffff 0%, #fff8f7 100%);
}

.scene-card:hover::after {
    transform: scaleX(1);
}

.scene-card-title {
    font-size: 20px;
    font-weight: bold;
    color: #ea3f28;
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
}

.scene-card-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ea3f28, #ff6b4a);
    border-radius: 1px;
}

.scene-card-desc {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
}

/* 页面标题样式 */
.section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 20px;
}

.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ea3f28);
}

.section-title::before {
    right: 100%;
}

.section-title::after {
    left: 100%;
    background: linear-gradient(90deg, #ea3f28, transparent);
}
