body{
    margin: 0;
}
.panel-temp{
    margin-bottom: 20px;
    border-radius: 0;
}
.head-bg-div {
    width: 100%;
    height: 50vh;
    /* 替换为你的图片URL */
    background-size: cover;
    background-position: center;
    justify-content: center; /* 水平居中 */
    align-items: flex-end; /* 垂直对齐到尾部 */
}
.head-bg-div img{
    height: 100% !important;
    width: 100% !important;
}
.btn-temp {
    margin-bottom: 100px;
    width: 68%;
    padding: 20px 20px;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    border: none;
    background-color: red;
    cursor: pointer;
    animation: pulse 2s infinite; /* 自动放大的动画 */
}
.phone-input{
    border-radius: 8px !important;
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1); /* 放大10% */
    }
}

/* 当鼠标悬停时取消动画并保持放大状态 */
.btn-temp:hover {
    animation: none;
    transform: scale(1.1); /* 保持放大状态 */
}
.item-div{
    overflow: hidden;
}
.item-div img{
    width: 100%;
}
.footer-info{
    white-space: pre-wrap;
    text-align: left;
}
.bg-white{
    background: #ffffff;
}
.footer-box{
    background: #f5f5f5;
    padding: 20px;
    margin-bottom: 0;
}