        * {
            -webkit-tap-highlight-color: transparent;
            outline: none;
            -webkit-focus-ring-color: transparent;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
        }

        .amount-item, .pay-type-item, .submit-btn {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        input, textarea {
            -webkit-user-select: text;
            -moz-user-select: text;
            -ms-user-select: text;
            user-select: text;
        }

        input:focus, textarea:focus {
            outline: none !important;
            box-shadow: 0 0 0 3px rgba(74, 142, 255, 0.1) !important;
        }

        body {
            background: linear-gradient(135deg, #fff5f9 0%, #f0f8ff 50%, #f5fcff 100%);
            padding: 20px 15px;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .reward-card {
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(255, 107, 203, 0.12);
            width: 100%;
            max-width: 420px;
            padding: 35px 25px;
        }
        .reward-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .avatar {
            width: 88px;
            height: 88px;
            border-radius: 50%;
            margin: 0 auto 18px;
            background: linear-gradient(135deg, #ff6bcb 0%, #4a8eff 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(255, 107, 203, 0.3);
            overflow: hidden;
        }

        .avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            display: block;
        }
        .reward-title {
            font-size: 24px;
            font-weight: 600;
            color: #2a2a38;
            margin-bottom: 8px;
        }
        .reward-desc {
            font-size: 14px;
            color: #7a7a8c;
            line-height: 1.5;
        }
       
        .notice-bar {
            background: linear-gradient(90deg, #fff0f7 0%, #f0fcff 100%);
            border: 1px solid #ffc8e8;
            border-radius: 10px;
            padding: 12px 15px;
            margin-bottom: 28px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .notice-bar svg {
            width: 18px;
            height: 18px;
            fill: #ff6bcb;
            flex-shrink: 0;
        }
        .notice-text {
            font-size: 14px;
            color: #5a5a6c;
            line-height: 1.4;
        }
        .notice-text .highlight {
            color: #ff6bcb;
            font-weight: 600;
        }
        .section {
            margin-bottom: 28px;
        }
        .section-title {
            font-size: 15px;
            color: #5a5a6c;
            margin-bottom: 14px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .section-title svg {
            width: 16px;
            height: 16px;
            fill: #ff6bcb;
        }
        
        .amount-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-bottom: 20px;
        }
        .amount-item {
            height: 52px;
            border: 1px solid #e8e8f0;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 500;
            color: #2a2a38;
            cursor: pointer;
            transition: all 0.25s ease;
            user-select: none;
            background: #fdfdff;
        }
        .amount-item.active {
            border-color: #36d1dc;
            background-color: #f0fcff;
            color: #25b8c2;
            transform: translateY(-2px);
            box-shadow: 0 3px 10px rgba(54, 209, 220, 0.2);
        }
        .amount-item:hover {
            border-color: #4a8eff;
        }
        
        .custom-amount {
            position: relative;
        }
        .custom-input {
            width: 100%;
            height: 52px;
            border: 1px solid #e8e8f0;
            border-radius: 10px;
            padding: 0 15px 0 40px;
            font-size: 18px;
            outline: none;
            transition: all 0.25s ease;
            background: #fdfdff;
        }
        .custom-input:focus {
            border-color: #4a8eff;
        }
        .amount-prefix {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 18px;
            color: #2a2a38;
            font-weight: 500;
        }
        .input-group {
            margin-bottom: 15px;
        }
        .form-input {
            width: 100%;
            height: 48px;
            border: 1px solid #e8e8f0;
            border-radius: 10px;
            padding: 0 15px;
            font-size: 15px;
            outline: none;
            transition: all 0.25s ease;
            background: #fdfdff;
        }
        .form-input:focus {
            border-color: #4a8eff;
        }
        .form-textarea {
            height: 80px;
            resize: none;
            padding-top: 12px;
            padding-bottom: 12px;
        }
        
        .pay-type-list {
            display: flex;
            gap: 12px;
        }
        .pay-type-item {
            flex: 1;
            height: 54px;
            border: 1px solid #e8e8f0;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 500;
            color: #5a5a6c;
            cursor: pointer;
            transition: all 0.25s ease;
            user-select: none;
            background: #fdfdff;
        }
       
        .pay-type-item img {
            width: 18px;
            height: 18px;
            object-fit: contain;
        }
        .pay-type-item.active {
            border-color: #ff6bcb;
            background-color: #fff5f9;
            color: #ff6bcb;
            transform: translateY(-2px);
            box-shadow: 0 3px 10px rgba(255, 107, 203, 0.2);
        }
        .pay-type-item:hover {
            border-color: #ff6bcb;
        }
        
        .submit-btn {
            width: 100%;
            height: 56px;
            border: none;
            border-radius: 12px;
            background: linear-gradient(90deg, #ff6bcb 0%, #36d1dc 50%, #4a8eff 100%);
            color: #fff;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
            background-size: 200% 100%;
        }
        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            background-position: 0 0;
        }
        .submit-btn:hover:not(:disabled) {
            background-position: 100% 0;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(54, 209, 220, 0.3);
        }
        .tip-text {
            font-size: 12px;
            color: #7a7a8c;
            text-align: center;
            margin-top: 15px;
        }
        .error-tip {
            color: #f53f3f;
            font-size: 13px;
            margin-top: 8px;
            display: none;
        }