.container {
    width: 1600px !important;
    margin: auto;
}

.search_big {
    width: 750px;
    height: 82px;
    line-height: 80px;
    margin: 0 auto;
    display: flex;
    border-radius: 40px;
    background-color: #fff;
    border: solid 1px #fff;
    font-size: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

    .search_big .s_input {
        flex: 1 1 0%;
    }

    .search_big .button {
        height: 80px;
        padding: 0;
        font-size: 20px;
    }

    .search_big .s_btn {
        width: 130px;
        border-radius: 0 40px 40px 0;
        text-align: center;
        background: #ff5967;
        color: #fff;
        position: relative;
    }

    .search_big .button {
        height: 80px;
        padding: 0;
        font-size: 20px;
    }

    .search_big .s_type {
        width: 120px;
        padding-left: 10px;
        text-align: center;
        border-radius: 40px 0 0 40px;
        background: #f4f4f4;
        color: #232323;
    }

.button-dropdown-list {
    top: 99%;
    border-radius: 15px;
    background: #fff;
}

    .button-dropdown-list li {
        padding: 0 15px;
        height: 40px;
        line-height: 40px;
    }

.list_search .button-border {
    border-width: 1px;
    color: #535353;
}

.button-dropdown-list {
    top: 99%;
    border-radius: 15px;
    background: #fff;
}

    .button-dropdown-list li {
        padding: 0 15px;
        height: 40px;
        line-height: 40px;
    }

        .button-dropdown-list li:hover {
            border-radius: 15px;
            background: rgba(236, 236, 236, 1);
        }

.search_big .s_input input {
    width: 100%;
    height: 78px;
    padding: 0 15px;
    line-height: 78px;
    border: none;
    font-size: 20px;
}

.view_pic {
    margin: 56px auto;
    display: flex;
    gap: 5px;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}

.load-more {
    display: block;
    margin: 40px auto;
    padding: 12px 25px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .load-more:hover {
        background-color: #0056b3;
    }
/* 确保动画平滑的关键帧定义 */
@keyframes flyToCart {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }

    70% {
        opacity: 0.6;
    }

    100% {
        transform: translate(var(--end-x), var(--end-y)) scale(0.3);
        opacity: 0.2;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.flying-item {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.pulse-animation {
    animation: pulse 0.5s ease-in-out;
}
