/* 价格匹配表单 - 全局样式 */
.price-match-form {
    max-width: 700px;
    margin: 20px auto;
    font-family: Arial, 'Microsoft Yahei', sans-serif;
    line-height: 1.6;
    color: #333;
}
.price-match-form h2 {
    font-size: 20px;
    color: #d9232e;
    text-align: center;
    margin: 0 0 15px;
}
.price-match-form p {
    font-size: 14px;
    margin: 0 0 15px;
}
.price-match-form .red-mark {
    color: #d9232e;
}
.price-match-form ul {
    margin: 0 0 20px;
    padding-left: 20px;
    font-size: 14px;
}
.price-match-form .form-box {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 4px;
}
.price-match-form .form-item {
    margin-bottom: 18px;
}
.price-match-form .form-label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
}
.price-match-form .form-label-bold {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}
.price-match-form .form-input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}
.price-match-form textarea.form-input {
    min-height: 100px;
    resize: vertical;
}

/* 上传区域 */
.price-match-form .upload-area {
    border: 2px dashed #ccc;
    border-radius: 4px;
    padding: 15px 10px;
    text-align: center;
    background: #fff;
    position: relative;
    margin-bottom: 15px;
}
.price-match-form .upload-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.price-match-form .upload-title {
    font-size: 20px;
    color: #333;
    margin: 0 0 8px;
}
.price-match-form .upload-tip {
    font-size: 16px;
    color: #999;
    margin: 0;
}

/* 预览区域 */
.price-match-form .preview-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.price-match-form .preview-item {
    width: 100px;
    height: 100px;
    border: 1px solid #ddd;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    background: #f9f9f9;
}
.price-match-form .preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.price-match-form .preview-file-name {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 12px;
    padding: 8px;
    text-align: center;
}
.price-match-form .preview-del {
    position: absolute;
    top: 0;
    right: 0;
    width: 22px;
    height: 22px;
    background: rgba(217,35,46,0.9);
    color: #fff;
    border: none;
    border-radius: 0 0 0 6px;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    cursor: pointer;
    z-index: 9;
}

/* 单选按钮组 */
.price-match-form .radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    align-items: center;
}
.price-match-form .radio-label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    white-space: nowrap;
}
.price-match-form .radio-label input {
    margin: 0;
    transform: scale(1.1);
}
.price-match-form .gray-tip {
    font-size: 12px;
    color: #888;
    margin-left: 4px;
}

/* 提交按钮 */
.price-match-form .submit-btn {
    background: #d9232e;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}