
/* 投诉举报弹框样式 */
.feedback-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.feedback-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.feedback-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 500px;
    width: 90%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.feedback-header {
    padding: 20px;
    position: relative;
    text-align: center;
}

.feedback-title {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.feedback-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.feedback-body {
    padding: 20px;
}

.feedback-form-group {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.feedback-form-group label {
    width: 80px;
    margin-right: 15px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    flex-shrink: 0;
}

.feedback-form-group input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.custom-select input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    width: 100%;
}

.feedback-form-group input:focus {
    outline: none;
    border-color: #ffda69;
}

.custom-select {
    position: relative;
    flex: 1;
}

.select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1001;
    display: none;
}

.option {
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.option:hover {
    background: #f8f9fa;
}

.option:last-child {
    border-bottom: none;
}

.feedback-footer {
    text-align: center;
    margin-top: 30px;
}

.btn-feedback {
    background: #ffda69;
    color: #333;
    border: none;
    padding: 12px 40px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
}

.btn-feedback:hover {
    background: #f5c842;
}

.required.is-invalid {
    border-color: #dc3545;
}

/* 栏目介绍样式 - 根据设计稿调整 */
.market-data-notice {
    margin: 20px 0;
    width: 100%;
}

.market-data-notice .column-box {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 18px 18px 20px 18px;
    box-sizing: border-box;
}

.market-data-notice .column-box-title {
    margin-bottom: 10px;
}

.market-data-notice .column-box-title h3 {
    font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #333333;
    margin: 0;
}

.market-data-notice-content {
    font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #666666;
    margin: 0;
}