/* 高级搜索部分 */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    font-size: 14px;
    background-color: rgba(0, 0, 0, 0.3);
}

.modal-content {
    background-color: #f0f0f5;
    margin: 5% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #333333;
}

.close {
    color: #333333;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #555555;
    text-decoration: none;
    cursor: pointer;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #4d4d4d;
}



.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #4d4d4d;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    background-color: #ffffff;
    color: #333333;
}

/* 检索范围样式 */

.form-group .radio-group {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.form-group .radio-group input[type="radio"] {
    width: 3%;
    margin-right: 5px;
}

.form-group .radio-group label {
    font-weight: 400;
    margin-right: 40px;
    color: #4d4d4d;
    cursor: pointer;
}

.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 25px 0 10px 0;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn.confirm {
    background-color: #cc6666;
    color: #ffffff;
}

.btn.confirm:hover {
    background-color: #b35959;
}

.btn.reset,
.btn.cancel {
    background-color: #e6e6e6;
    color: #333333;
}

.btn.reset:hover,
.btn.cancel:hover {
    background-color: #cccccc;
}