* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

.container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    overflow-x: hidden;
}

/* 图片展示区域 */
.images-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 80px;
}

/* 右上角呼叫按钮 - 图片区域内右侧 + 页面垂直居中 */
.top-right-call {
    position: fixed;
    top: 50%;
    right: calc(50% - 300px + 20px); /* 计算位置：页面中心 - 图片容器宽度/2 + 20px边距 */
    transform: translateY(-50%);
    z-index: 1000;
}

.call-button-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #ff4500;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: scaleAnimation 1.5s ease-in-out infinite;
    transition: all 0.3s ease;
}

.call-button-top:hover {
    background-color: #ff6347;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.call-button-top .call-icon {
    font-size: 24px;
    margin-bottom: 5px;
}

.road-rescue-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: all 0.3s ease;
}

.road-rescue-img:hover {
    transform: scale(1.02);
}

/* 底部呼叫按钮 */
.bottom-call-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 40px);
    max-width: 560px;
}

.call-button-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    background-color: #ff4500;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: scaleAnimation 1.5s ease-in-out infinite;
    transition: all 0.3s ease;
}

.call-button-bottom:hover {
    background-color: #ff6347;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.call-button-bottom .call-icon {
    font-size: 24px;
    margin-right: 10px;
}

/* 缩放动画效果 */
@keyframes scaleAnimation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

/* 响应式设计 - 保持布局不变 */
@media (max-width: 768px) {
    /* 保持原有布局，不做调整 */
}

@media (max-width: 480px) {
    /* 保持原有布局，不做调整 */
}