
.search-filters {
    background-color: #ffffff;
    width: 100%;
    z-index: 222;
    max-height: 320px;
    border: 1px solid #eee;
    overflow-y: scroll;
    padding: 6px 15px;
    display: none;
    position: absolute;
}

.select-option {
    border-bottom: 1px solid #eee;
    padding: 10px;
    display: flex;
    align-items: center;

}
.no-results {
    text-align: left;
}
.select-money {
    font-size: 18px;
    font-weight: 600;
}

.select-left {
    display: flex;
    align-items: center;
}

.search-filters .select-option {
    display: flex;
    justify-content: space-between;
}

.search-filters img {
    width: 50px;
    height: 50px;
    margin-right: 12px;
    border-radius: 50%;
}
/* 弹窗蒙层 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

/* 弹窗内容 */
.modal .content {
    position: relative;
    width: 80%;
    max-width: 800px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    animation: zoomIn 0.3s;
}

/* 移动端优化 */
@media screen and (max-width: 768px) {
    .modal .content {
        width: 90%;
        padding: 15px;
    }
}

/* 图片自适应 */
.modal .content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* 动画效果 */
@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* 关闭按钮 */
.modal .close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.modal .close::before,
.modal .close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: #666;
    border-radius: 1px;
}

.modal .close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal .close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.service-logo2 {
    position: fixed;
    bottom: 115px;
    right: 15px;
    cursor: pointer;
}

.img-show2 {
    width: 43px;
    height: auto;
}

.service-logo1 {
    position: fixed;
    bottom: 55px;
    right: 15px;
}

.service-logo {
    position: fixed;
    bottom: 15px;
    right: 15px;
}

.service-logo1 .img-show11 {
    width: 43px;
    height: auto;
    text-align: right;
    margin-bottom: 8px;
}

.service-logo .img-show {
    width: 155px;
    height: auto;
}

.service-logo a {
    position: relative;
}
/* 弹窗容器 */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    -webkit-overflow-scrolling: touch; /* 移动端滚动优化 */
}

/* 弹窗内容 */
.modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    padding: 20px;
    box-sizing: border-box;
}

/* 移动端优化 */
@media (max-width: 768px) {
    .modal-content {
        width: 92%;
        padding: 15px;
    }
    .button {
        padding: 5px 5px !important;
        font-size: 14px;
    }
}

/* 关闭按钮 */
/* .modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z" fill="%23666"/></svg>') no-repeat center;
} */

/* 关闭按钮 */
.modal-close  {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.modal-close::before,
.modal-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: #666;
    border-radius: 1px;
}
.modal-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
/* 按钮布局优化 */
.btn-style {
    margin: 10px 0;
    gap: 10px;
}
.btn-style .button {
    /* flex: 1; */
    width: 50%;
    text-align: center;
    white-space: nowrap;
}